| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| productName | String |
|
Yes | - |
| productDesc | String |
|
Yes | - |
| shortDesc | String? |
|
No | - |
| grade | Grade? |
|
No | - |
| sku | String? |
|
No | - |
| price | Decimal |
|
Yes | - |
| msrp | Decimal? |
|
No | - |
| size | String? |
|
No | - |
| weight | Decimal? |
|
No | - |
| weightUnit | String? |
|
No | - |
| features | Json? |
|
No | - |
| quantity | Int? |
|
No | - |
| soldQuantity | Int? |
|
No | - |
| isActive | Boolean? |
|
No | - |
| isAvailable | Boolean? |
|
No | - |
| slug | String? |
|
No | - |
| imageUrl | String? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| categoryId | Int |
|
Yes | - |
| category | Category |
|
Yes | - |
| orderDetail | OrderDetail[] |
|
Yes | - |
| cartItem | CartItem[] |
|
Yes | - |
| productInventory | ProductInventory[] |
|
Yes | - |
| productImage | ProductImage[] |
|
Yes | - |
| reviews | UserReview[] |
|
Yes | - |
Find zero or one Product
// Get one Product
const product = await prisma.product.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductWhereUniqueInput | Yes |
Find first Product
// Get one Product
const product = await prisma.product.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductWhereInput | No |
| orderBy | ProductOrderByWithRelationInput[] | ProductOrderByWithRelationInput | No |
| cursor | ProductWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ProductScalarFieldEnum | ProductScalarFieldEnum[] | No |
Find zero or more Product
// Get all Product
const Product = await prisma.product.findMany()
// Get first 10 Product
const Product = await prisma.product.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ProductWhereInput | No |
| orderBy | ProductOrderByWithRelationInput[] | ProductOrderByWithRelationInput | No |
| cursor | ProductWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ProductScalarFieldEnum | ProductScalarFieldEnum[] | No |
Create one Product
// Create one Product
const Product = await prisma.product.create({
data: {
// ... data to create a Product
}
})
| Name | Type | Required |
|---|---|---|
| data | ProductCreateInput | ProductUncheckedCreateInput | Yes |
Delete one Product
// Delete one Product
const Product = await prisma.product.delete({
where: {
// ... filter to delete one Product
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductWhereUniqueInput | Yes |
Update one Product
// Update one Product
const product = await prisma.product.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ProductUpdateInput | ProductUncheckedUpdateInput | Yes |
| where | ProductWhereUniqueInput | Yes |
Delete zero or more Product
// Delete a few Product
const { count } = await prisma.product.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductWhereInput | No |
Update zero or one Product
const { count } = await prisma.product.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ProductUpdateManyMutationInput | ProductUncheckedUpdateManyInput | Yes |
| where | ProductWhereInput | No |
Create or update one Product
// Update or create a Product
const product = await prisma.product.upsert({
create: {
// ... data to create a Product
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Product we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductWhereUniqueInput | Yes |
| create | ProductCreateInput | ProductUncheckedCreateInput | Yes |
| update | ProductUpdateInput | ProductUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| categoryName | String |
|
Yes | - |
| categoryDesc | String |
|
Yes | - |
| slug | String? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| parentCategoryId | Int? |
|
No | - |
| parentCategory | Category? |
|
No | - |
| childCategories | Category[] |
|
Yes | - |
| product | Product[] |
|
Yes | - |
| promotionCategory | PromotionCategory[] |
|
Yes | - |
Find zero or one Category
// Get one Category
const category = await prisma.category.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
Find first Category
// Get one Category
const category = await prisma.category.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
| orderBy | CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput | No |
| cursor | CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CategoryScalarFieldEnum | CategoryScalarFieldEnum[] | No |
Find zero or more Category
// Get all Category
const Category = await prisma.category.findMany()
// Get first 10 Category
const Category = await prisma.category.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
| orderBy | CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput | No |
| cursor | CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CategoryScalarFieldEnum | CategoryScalarFieldEnum[] | No |
Create one Category
// Create one Category
const Category = await prisma.category.create({
data: {
// ... data to create a Category
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryCreateInput | CategoryUncheckedCreateInput | Yes |
Delete one Category
// Delete one Category
const Category = await prisma.category.delete({
where: {
// ... filter to delete one Category
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
Update one Category
// Update one Category
const category = await prisma.category.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryUpdateInput | CategoryUncheckedUpdateInput | Yes |
| where | CategoryWhereUniqueInput | Yes |
Delete zero or more Category
// Delete a few Category
const { count } = await prisma.category.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
Update zero or one Category
const { count } = await prisma.category.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyInput | Yes |
| where | CategoryWhereInput | No |
Create or update one Category
// Update or create a Category
const category = await prisma.category.upsert({
create: {
// ... data to create a Category
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Category we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
| create | CategoryCreateInput | CategoryUncheckedCreateInput | Yes |
| update | CategoryUpdateInput | CategoryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| quantity | Int |
|
Yes | - |
| reStockLevel | Int? |
|
No | - |
| status | InventoryStatus |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| productId | Int |
|
Yes | - |
| product | Product |
|
Yes | - |
Find zero or one ProductInventory
// Get one ProductInventory
const productInventory = await prisma.productInventory.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductInventoryWhereUniqueInput | Yes |
Find first ProductInventory
// Get one ProductInventory
const productInventory = await prisma.productInventory.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductInventoryWhereInput | No |
| orderBy | ProductInventoryOrderByWithRelationInput[] | ProductInventoryOrderByWithRelationInput | No |
| cursor | ProductInventoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ProductInventoryScalarFieldEnum | ProductInventoryScalarFieldEnum[] | No |
Find zero or more ProductInventory
// Get all ProductInventory
const ProductInventory = await prisma.productInventory.findMany()
// Get first 10 ProductInventory
const ProductInventory = await prisma.productInventory.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ProductInventoryWhereInput | No |
| orderBy | ProductInventoryOrderByWithRelationInput[] | ProductInventoryOrderByWithRelationInput | No |
| cursor | ProductInventoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ProductInventoryScalarFieldEnum | ProductInventoryScalarFieldEnum[] | No |
Create one ProductInventory
// Create one ProductInventory
const ProductInventory = await prisma.productInventory.create({
data: {
// ... data to create a ProductInventory
}
})
| Name | Type | Required |
|---|---|---|
| data | ProductInventoryCreateInput | ProductInventoryUncheckedCreateInput | Yes |
Delete one ProductInventory
// Delete one ProductInventory
const ProductInventory = await prisma.productInventory.delete({
where: {
// ... filter to delete one ProductInventory
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductInventoryWhereUniqueInput | Yes |
Update one ProductInventory
// Update one ProductInventory
const productInventory = await prisma.productInventory.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ProductInventoryUpdateInput | ProductInventoryUncheckedUpdateInput | Yes |
| where | ProductInventoryWhereUniqueInput | Yes |
Delete zero or more ProductInventory
// Delete a few ProductInventory
const { count } = await prisma.productInventory.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductInventoryWhereInput | No |
Update zero or one ProductInventory
const { count } = await prisma.productInventory.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ProductInventoryUpdateManyMutationInput | ProductInventoryUncheckedUpdateManyInput | Yes |
| where | ProductInventoryWhereInput | No |
Create or update one ProductInventory
// Update or create a ProductInventory
const productInventory = await prisma.productInventory.upsert({
create: {
// ... data to create a ProductInventory
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ProductInventory we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductInventoryWhereUniqueInput | Yes |
| create | ProductInventoryCreateInput | ProductInventoryUncheckedCreateInput | Yes |
| update | ProductInventoryUpdateInput | ProductInventoryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| imageUrl | String |
|
Yes | - |
| productId | Int |
|
Yes | - |
| product | Product |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one ProductImage
// Get one ProductImage
const productImage = await prisma.productImage.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductImageWhereUniqueInput | Yes |
Find first ProductImage
// Get one ProductImage
const productImage = await prisma.productImage.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductImageWhereInput | No |
| orderBy | ProductImageOrderByWithRelationInput[] | ProductImageOrderByWithRelationInput | No |
| cursor | ProductImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ProductImageScalarFieldEnum | ProductImageScalarFieldEnum[] | No |
Find zero or more ProductImage
// Get all ProductImage
const ProductImage = await prisma.productImage.findMany()
// Get first 10 ProductImage
const ProductImage = await prisma.productImage.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ProductImageWhereInput | No |
| orderBy | ProductImageOrderByWithRelationInput[] | ProductImageOrderByWithRelationInput | No |
| cursor | ProductImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ProductImageScalarFieldEnum | ProductImageScalarFieldEnum[] | No |
Create one ProductImage
// Create one ProductImage
const ProductImage = await prisma.productImage.create({
data: {
// ... data to create a ProductImage
}
})
| Name | Type | Required |
|---|---|---|
| data | ProductImageCreateInput | ProductImageUncheckedCreateInput | Yes |
Delete one ProductImage
// Delete one ProductImage
const ProductImage = await prisma.productImage.delete({
where: {
// ... filter to delete one ProductImage
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductImageWhereUniqueInput | Yes |
Update one ProductImage
// Update one ProductImage
const productImage = await prisma.productImage.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ProductImageUpdateInput | ProductImageUncheckedUpdateInput | Yes |
| where | ProductImageWhereUniqueInput | Yes |
Delete zero or more ProductImage
// Delete a few ProductImage
const { count } = await prisma.productImage.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductImageWhereInput | No |
Update zero or one ProductImage
const { count } = await prisma.productImage.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ProductImageUpdateManyMutationInput | ProductImageUncheckedUpdateManyInput | Yes |
| where | ProductImageWhereInput | No |
Create or update one ProductImage
// Update or create a ProductImage
const productImage = await prisma.productImage.upsert({
create: {
// ... data to create a ProductImage
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ProductImage we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ProductImageWhereUniqueInput | Yes |
| create | ProductImageCreateInput | ProductImageUncheckedCreateInput | Yes |
| update | ProductImageUpdateInput | ProductImageUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| String |
|
Yes | - | |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| authenticationToken | AuthenticationToken? |
|
No | - |
| preference | Json? |
|
No | - |
| profile | UserProfile? |
|
No | - |
| balance | Int |
|
Yes | - |
| authoredReviews | UserReview[] |
|
Yes | - |
| cart | Cart? |
|
No | - |
| login | Login? |
|
No | - |
| roles | UserRole[] |
|
Yes | - |
| paymentMethod | PaymentMethod[] |
|
Yes | - |
| orders | Order[] |
|
Yes | - |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Find zero or more User
// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
| Name | Type | Required |
|---|---|---|
| data | UserCreateInput | UserUncheckedCreateInput | Yes |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
| where | UserWhereInput | No |
Create or update one User
// Update or create a User
const user = await prisma.user.upsert({
create: {
// ... data to create a User
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
| create | UserCreateInput | UserUncheckedCreateInput | Yes |
| update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| username | String |
|
Yes | - |
| password | String |
|
Yes | - |
| failedAttempts | Int |
|
Yes | - |
| lockoutTime | DateTime? |
|
No | - |
| lastLogin | DateTime? |
|
No | - |
| userId | Int |
|
Yes | - |
| user | User |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one Login
// Get one Login
const login = await prisma.login.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LoginWhereUniqueInput | Yes |
Find first Login
// Get one Login
const login = await prisma.login.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LoginWhereInput | No |
| orderBy | LoginOrderByWithRelationInput[] | LoginOrderByWithRelationInput | No |
| cursor | LoginWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LoginScalarFieldEnum | LoginScalarFieldEnum[] | No |
Find zero or more Login
// Get all Login
const Login = await prisma.login.findMany()
// Get first 10 Login
const Login = await prisma.login.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LoginWhereInput | No |
| orderBy | LoginOrderByWithRelationInput[] | LoginOrderByWithRelationInput | No |
| cursor | LoginWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LoginScalarFieldEnum | LoginScalarFieldEnum[] | No |
Create one Login
// Create one Login
const Login = await prisma.login.create({
data: {
// ... data to create a Login
}
})
| Name | Type | Required |
|---|---|---|
| data | LoginCreateInput | LoginUncheckedCreateInput | Yes |
Delete one Login
// Delete one Login
const Login = await prisma.login.delete({
where: {
// ... filter to delete one Login
}
})
| Name | Type | Required |
|---|---|---|
| where | LoginWhereUniqueInput | Yes |
Update one Login
// Update one Login
const login = await prisma.login.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LoginUpdateInput | LoginUncheckedUpdateInput | Yes |
| where | LoginWhereUniqueInput | Yes |
Delete zero or more Login
// Delete a few Login
const { count } = await prisma.login.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LoginWhereInput | No |
Update zero or one Login
const { count } = await prisma.login.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LoginUpdateManyMutationInput | LoginUncheckedUpdateManyInput | Yes |
| where | LoginWhereInput | No |
Create or update one Login
// Update or create a Login
const login = await prisma.login.upsert({
create: {
// ... data to create a Login
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Login we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LoginWhereUniqueInput | Yes |
| create | LoginCreateInput | LoginUncheckedCreateInput | Yes |
| update | LoginUpdateInput | LoginUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| token | String |
|
Yes | - |
| expiry | DateTime? |
|
No | - |
| userId | Int |
|
Yes | - |
| user | User |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one AuthenticationToken
// Get one AuthenticationToken
const authenticationToken = await prisma.authenticationToken.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AuthenticationTokenWhereUniqueInput | Yes |
Find first AuthenticationToken
// Get one AuthenticationToken
const authenticationToken = await prisma.authenticationToken.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AuthenticationTokenWhereInput | No |
| orderBy | AuthenticationTokenOrderByWithRelationInput[] | AuthenticationTokenOrderByWithRelationInput | No |
| cursor | AuthenticationTokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AuthenticationTokenScalarFieldEnum | AuthenticationTokenScalarFieldEnum[] | No |
Find zero or more AuthenticationToken
// Get all AuthenticationToken
const AuthenticationToken = await prisma.authenticationToken.findMany()
// Get first 10 AuthenticationToken
const AuthenticationToken = await prisma.authenticationToken.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AuthenticationTokenWhereInput | No |
| orderBy | AuthenticationTokenOrderByWithRelationInput[] | AuthenticationTokenOrderByWithRelationInput | No |
| cursor | AuthenticationTokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AuthenticationTokenScalarFieldEnum | AuthenticationTokenScalarFieldEnum[] | No |
Create one AuthenticationToken
// Create one AuthenticationToken
const AuthenticationToken = await prisma.authenticationToken.create({
data: {
// ... data to create a AuthenticationToken
}
})
| Name | Type | Required |
|---|---|---|
| data | AuthenticationTokenCreateInput | AuthenticationTokenUncheckedCreateInput | Yes |
Delete one AuthenticationToken
// Delete one AuthenticationToken
const AuthenticationToken = await prisma.authenticationToken.delete({
where: {
// ... filter to delete one AuthenticationToken
}
})
| Name | Type | Required |
|---|---|---|
| where | AuthenticationTokenWhereUniqueInput | Yes |
Update one AuthenticationToken
// Update one AuthenticationToken
const authenticationToken = await prisma.authenticationToken.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AuthenticationTokenUpdateInput | AuthenticationTokenUncheckedUpdateInput | Yes |
| where | AuthenticationTokenWhereUniqueInput | Yes |
Delete zero or more AuthenticationToken
// Delete a few AuthenticationToken
const { count } = await prisma.authenticationToken.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AuthenticationTokenWhereInput | No |
Update zero or one AuthenticationToken
const { count } = await prisma.authenticationToken.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AuthenticationTokenUpdateManyMutationInput | AuthenticationTokenUncheckedUpdateManyInput | Yes |
| where | AuthenticationTokenWhereInput | No |
Create or update one AuthenticationToken
// Update or create a AuthenticationToken
const authenticationToken = await prisma.authenticationToken.upsert({
create: {
// ... data to create a AuthenticationToken
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the AuthenticationToken we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AuthenticationTokenWhereUniqueInput | Yes |
| create | AuthenticationTokenCreateInput | AuthenticationTokenUncheckedCreateInput | Yes |
| update | AuthenticationTokenUpdateInput | AuthenticationTokenUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| firstName | String? |
|
No | - |
| lastName | String? |
|
No | - |
| userAddress | UserAddress[] |
|
Yes | - |
| phone | String? |
|
No | - |
| birthDate | DateTime? |
|
No | - |
| gender | Gender? |
|
No | - |
| photo | String? |
|
No | - |
| bio | String? |
|
No | - |
| socialLinks | SocialLink[] |
|
Yes | - |
| userId | Int |
|
Yes | - |
| user | User |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one UserProfile
// Get one UserProfile
const userProfile = await prisma.userProfile.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserProfileWhereUniqueInput | Yes |
Find first UserProfile
// Get one UserProfile
const userProfile = await prisma.userProfile.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserProfileWhereInput | No |
| orderBy | UserProfileOrderByWithRelationInput[] | UserProfileOrderByWithRelationInput | No |
| cursor | UserProfileWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserProfileScalarFieldEnum | UserProfileScalarFieldEnum[] | No |
Find zero or more UserProfile
// Get all UserProfile
const UserProfile = await prisma.userProfile.findMany()
// Get first 10 UserProfile
const UserProfile = await prisma.userProfile.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserProfileWhereInput | No |
| orderBy | UserProfileOrderByWithRelationInput[] | UserProfileOrderByWithRelationInput | No |
| cursor | UserProfileWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserProfileScalarFieldEnum | UserProfileScalarFieldEnum[] | No |
Create one UserProfile
// Create one UserProfile
const UserProfile = await prisma.userProfile.create({
data: {
// ... data to create a UserProfile
}
})
| Name | Type | Required |
|---|---|---|
| data | UserProfileCreateInput | UserProfileUncheckedCreateInput | Yes |
Delete one UserProfile
// Delete one UserProfile
const UserProfile = await prisma.userProfile.delete({
where: {
// ... filter to delete one UserProfile
}
})
| Name | Type | Required |
|---|---|---|
| where | UserProfileWhereUniqueInput | Yes |
Update one UserProfile
// Update one UserProfile
const userProfile = await prisma.userProfile.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserProfileUpdateInput | UserProfileUncheckedUpdateInput | Yes |
| where | UserProfileWhereUniqueInput | Yes |
Delete zero or more UserProfile
// Delete a few UserProfile
const { count } = await prisma.userProfile.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserProfileWhereInput | No |
Update zero or one UserProfile
const { count } = await prisma.userProfile.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserProfileUpdateManyMutationInput | UserProfileUncheckedUpdateManyInput | Yes |
| where | UserProfileWhereInput | No |
Create or update one UserProfile
// Update or create a UserProfile
const userProfile = await prisma.userProfile.upsert({
create: {
// ... data to create a UserProfile
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserProfile we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserProfileWhereUniqueInput | Yes |
| create | UserProfileCreateInput | UserProfileUncheckedCreateInput | Yes |
| update | UserProfileUpdateInput | UserProfileUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| userProfileId | Int |
|
Yes | - |
| addressId | Int |
|
Yes | - |
| userProfile | UserProfile |
|
Yes | - |
| address | Address |
|
Yes | - |
| isDefault | Boolean |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one UserAddress
// Get one UserAddress
const userAddress = await prisma.userAddress.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserAddressWhereUniqueInput | Yes |
Find first UserAddress
// Get one UserAddress
const userAddress = await prisma.userAddress.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserAddressWhereInput | No |
| orderBy | UserAddressOrderByWithRelationInput[] | UserAddressOrderByWithRelationInput | No |
| cursor | UserAddressWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserAddressScalarFieldEnum | UserAddressScalarFieldEnum[] | No |
Find zero or more UserAddress
// Get all UserAddress
const UserAddress = await prisma.userAddress.findMany()
// Get first 10 UserAddress
const UserAddress = await prisma.userAddress.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserAddressWhereInput | No |
| orderBy | UserAddressOrderByWithRelationInput[] | UserAddressOrderByWithRelationInput | No |
| cursor | UserAddressWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserAddressScalarFieldEnum | UserAddressScalarFieldEnum[] | No |
Create one UserAddress
// Create one UserAddress
const UserAddress = await prisma.userAddress.create({
data: {
// ... data to create a UserAddress
}
})
| Name | Type | Required |
|---|---|---|
| data | UserAddressCreateInput | UserAddressUncheckedCreateInput | Yes |
Delete one UserAddress
// Delete one UserAddress
const UserAddress = await prisma.userAddress.delete({
where: {
// ... filter to delete one UserAddress
}
})
| Name | Type | Required |
|---|---|---|
| where | UserAddressWhereUniqueInput | Yes |
Update one UserAddress
// Update one UserAddress
const userAddress = await prisma.userAddress.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserAddressUpdateInput | UserAddressUncheckedUpdateInput | Yes |
| where | UserAddressWhereUniqueInput | Yes |
Delete zero or more UserAddress
// Delete a few UserAddress
const { count } = await prisma.userAddress.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserAddressWhereInput | No |
Update zero or one UserAddress
const { count } = await prisma.userAddress.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserAddressUpdateManyMutationInput | UserAddressUncheckedUpdateManyInput | Yes |
| where | UserAddressWhereInput | No |
Create or update one UserAddress
// Update or create a UserAddress
const userAddress = await prisma.userAddress.upsert({
create: {
// ... data to create a UserAddress
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserAddress we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserAddressWhereUniqueInput | Yes |
| create | UserAddressCreateInput | UserAddressUncheckedCreateInput | Yes |
| update | UserAddressUpdateInput | UserAddressUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| street | String |
|
Yes | - |
| unit | String |
|
Yes | - |
| city | String |
|
Yes | - |
| zipcode | String |
|
Yes | - |
| state | String |
|
Yes | - |
| country | String |
|
Yes | - |
| planet | String? |
|
No | - |
| solarSystem | String? |
|
No | - |
| galaxy | String? |
|
No | - |
| localGroup | String? |
|
No | - |
| localCluster | String? |
|
No | - |
| universe | String? |
|
No | - |
| userAddress | UserAddress[] |
|
Yes | - |
| paymentDetail | PaymentDetail[] |
|
Yes | - |
| shippingDetail | ShippingDetail[] |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one Address
// Get one Address
const address = await prisma.address.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AddressWhereUniqueInput | Yes |
Find first Address
// Get one Address
const address = await prisma.address.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AddressWhereInput | No |
| orderBy | AddressOrderByWithRelationInput[] | AddressOrderByWithRelationInput | No |
| cursor | AddressWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AddressScalarFieldEnum | AddressScalarFieldEnum[] | No |
Find zero or more Address
// Get all Address
const Address = await prisma.address.findMany()
// Get first 10 Address
const Address = await prisma.address.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AddressWhereInput | No |
| orderBy | AddressOrderByWithRelationInput[] | AddressOrderByWithRelationInput | No |
| cursor | AddressWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AddressScalarFieldEnum | AddressScalarFieldEnum[] | No |
Create one Address
// Create one Address
const Address = await prisma.address.create({
data: {
// ... data to create a Address
}
})
| Name | Type | Required |
|---|---|---|
| data | AddressCreateInput | AddressUncheckedCreateInput | Yes |
Delete one Address
// Delete one Address
const Address = await prisma.address.delete({
where: {
// ... filter to delete one Address
}
})
| Name | Type | Required |
|---|---|---|
| where | AddressWhereUniqueInput | Yes |
Update one Address
// Update one Address
const address = await prisma.address.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AddressUpdateInput | AddressUncheckedUpdateInput | Yes |
| where | AddressWhereUniqueInput | Yes |
Delete zero or more Address
// Delete a few Address
const { count } = await prisma.address.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AddressWhereInput | No |
Update zero or one Address
const { count } = await prisma.address.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AddressUpdateManyMutationInput | AddressUncheckedUpdateManyInput | Yes |
| where | AddressWhereInput | No |
Create or update one Address
// Update or create a Address
const address = await prisma.address.upsert({
create: {
// ... data to create a Address
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Address we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AddressWhereUniqueInput | Yes |
| create | AddressCreateInput | AddressUncheckedCreateInput | Yes |
| update | AddressUpdateInput | AddressUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| userProfileId | Int |
|
Yes | - |
| socialProvider | String |
|
Yes | - |
| socialUrl | String |
|
Yes | - |
| UserProfile | UserProfile |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one SocialLink
// Get one SocialLink
const socialLink = await prisma.socialLink.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SocialLinkWhereUniqueInput | Yes |
Find first SocialLink
// Get one SocialLink
const socialLink = await prisma.socialLink.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SocialLinkWhereInput | No |
| orderBy | SocialLinkOrderByWithRelationInput[] | SocialLinkOrderByWithRelationInput | No |
| cursor | SocialLinkWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SocialLinkScalarFieldEnum | SocialLinkScalarFieldEnum[] | No |
Find zero or more SocialLink
// Get all SocialLink
const SocialLink = await prisma.socialLink.findMany()
// Get first 10 SocialLink
const SocialLink = await prisma.socialLink.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SocialLinkWhereInput | No |
| orderBy | SocialLinkOrderByWithRelationInput[] | SocialLinkOrderByWithRelationInput | No |
| cursor | SocialLinkWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SocialLinkScalarFieldEnum | SocialLinkScalarFieldEnum[] | No |
Create one SocialLink
// Create one SocialLink
const SocialLink = await prisma.socialLink.create({
data: {
// ... data to create a SocialLink
}
})
| Name | Type | Required |
|---|---|---|
| data | SocialLinkCreateInput | SocialLinkUncheckedCreateInput | Yes |
Delete one SocialLink
// Delete one SocialLink
const SocialLink = await prisma.socialLink.delete({
where: {
// ... filter to delete one SocialLink
}
})
| Name | Type | Required |
|---|---|---|
| where | SocialLinkWhereUniqueInput | Yes |
Update one SocialLink
// Update one SocialLink
const socialLink = await prisma.socialLink.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SocialLinkUpdateInput | SocialLinkUncheckedUpdateInput | Yes |
| where | SocialLinkWhereUniqueInput | Yes |
Delete zero or more SocialLink
// Delete a few SocialLink
const { count } = await prisma.socialLink.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SocialLinkWhereInput | No |
Update zero or one SocialLink
const { count } = await prisma.socialLink.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SocialLinkUpdateManyMutationInput | SocialLinkUncheckedUpdateManyInput | Yes |
| where | SocialLinkWhereInput | No |
Create or update one SocialLink
// Update or create a SocialLink
const socialLink = await prisma.socialLink.upsert({
create: {
// ... data to create a SocialLink
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the SocialLink we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SocialLinkWhereUniqueInput | Yes |
| create | SocialLinkCreateInput | SocialLinkUncheckedCreateInput | Yes |
| update | SocialLinkUpdateInput | SocialLinkUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| title | String |
|
Yes | - |
| message | String |
|
Yes | - |
| rating | Int |
|
Yes | - |
| authorId | Int |
|
Yes | - |
| author | User |
|
Yes | - |
| productId | Int |
|
Yes | - |
| product | Product |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one UserReview
// Get one UserReview
const userReview = await prisma.userReview.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserReviewWhereUniqueInput | Yes |
Find first UserReview
// Get one UserReview
const userReview = await prisma.userReview.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserReviewWhereInput | No |
| orderBy | UserReviewOrderByWithRelationInput[] | UserReviewOrderByWithRelationInput | No |
| cursor | UserReviewWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserReviewScalarFieldEnum | UserReviewScalarFieldEnum[] | No |
Find zero or more UserReview
// Get all UserReview
const UserReview = await prisma.userReview.findMany()
// Get first 10 UserReview
const UserReview = await prisma.userReview.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserReviewWhereInput | No |
| orderBy | UserReviewOrderByWithRelationInput[] | UserReviewOrderByWithRelationInput | No |
| cursor | UserReviewWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserReviewScalarFieldEnum | UserReviewScalarFieldEnum[] | No |
Create one UserReview
// Create one UserReview
const UserReview = await prisma.userReview.create({
data: {
// ... data to create a UserReview
}
})
| Name | Type | Required |
|---|---|---|
| data | UserReviewCreateInput | UserReviewUncheckedCreateInput | Yes |
Delete one UserReview
// Delete one UserReview
const UserReview = await prisma.userReview.delete({
where: {
// ... filter to delete one UserReview
}
})
| Name | Type | Required |
|---|---|---|
| where | UserReviewWhereUniqueInput | Yes |
Update one UserReview
// Update one UserReview
const userReview = await prisma.userReview.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserReviewUpdateInput | UserReviewUncheckedUpdateInput | Yes |
| where | UserReviewWhereUniqueInput | Yes |
Delete zero or more UserReview
// Delete a few UserReview
const { count } = await prisma.userReview.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserReviewWhereInput | No |
Update zero or one UserReview
const { count } = await prisma.userReview.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserReviewUpdateManyMutationInput | UserReviewUncheckedUpdateManyInput | Yes |
| where | UserReviewWhereInput | No |
Create or update one UserReview
// Update or create a UserReview
const userReview = await prisma.userReview.upsert({
create: {
// ... data to create a UserReview
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserReview we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserReviewWhereUniqueInput | Yes |
| create | UserReviewCreateInput | UserReviewUncheckedCreateInput | Yes |
| update | UserReviewUpdateInput | UserReviewUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
Find zero or one PromotionCategory
// Get one PromotionCategory
const promotionCategory = await prisma.promotionCategory.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionCategoryWhereUniqueInput | Yes |
Find first PromotionCategory
// Get one PromotionCategory
const promotionCategory = await prisma.promotionCategory.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionCategoryWhereInput | No |
| orderBy | PromotionCategoryOrderByWithRelationInput[] | PromotionCategoryOrderByWithRelationInput | No |
| cursor | PromotionCategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PromotionCategoryScalarFieldEnum | PromotionCategoryScalarFieldEnum[] | No |
Find zero or more PromotionCategory
// Get all PromotionCategory
const PromotionCategory = await prisma.promotionCategory.findMany()
// Get first 10 PromotionCategory
const PromotionCategory = await prisma.promotionCategory.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PromotionCategoryWhereInput | No |
| orderBy | PromotionCategoryOrderByWithRelationInput[] | PromotionCategoryOrderByWithRelationInput | No |
| cursor | PromotionCategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PromotionCategoryScalarFieldEnum | PromotionCategoryScalarFieldEnum[] | No |
Create one PromotionCategory
// Create one PromotionCategory
const PromotionCategory = await prisma.promotionCategory.create({
data: {
// ... data to create a PromotionCategory
}
})
| Name | Type | Required |
|---|---|---|
| data | PromotionCategoryCreateInput | PromotionCategoryUncheckedCreateInput | Yes |
Delete one PromotionCategory
// Delete one PromotionCategory
const PromotionCategory = await prisma.promotionCategory.delete({
where: {
// ... filter to delete one PromotionCategory
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionCategoryWhereUniqueInput | Yes |
Update one PromotionCategory
// Update one PromotionCategory
const promotionCategory = await prisma.promotionCategory.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PromotionCategoryUpdateInput | PromotionCategoryUncheckedUpdateInput | Yes |
| where | PromotionCategoryWhereUniqueInput | Yes |
Delete zero or more PromotionCategory
// Delete a few PromotionCategory
const { count } = await prisma.promotionCategory.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionCategoryWhereInput | No |
Update zero or one PromotionCategory
const { count } = await prisma.promotionCategory.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PromotionCategoryUpdateManyMutationInput | PromotionCategoryUncheckedUpdateManyInput | Yes |
| where | PromotionCategoryWhereInput | No |
Create or update one PromotionCategory
// Update or create a PromotionCategory
const promotionCategory = await prisma.promotionCategory.upsert({
create: {
// ... data to create a PromotionCategory
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PromotionCategory we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionCategoryWhereUniqueInput | Yes |
| create | PromotionCategoryCreateInput | PromotionCategoryUncheckedCreateInput | Yes |
| update | PromotionCategoryUpdateInput | PromotionCategoryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| promotionCategory | PromotionCategory[] |
|
Yes | - |
| promotionName | String |
|
Yes | - |
| promotionDesc | String |
|
Yes | - |
| promotionRate | Int |
|
Yes | - |
| isActive | Boolean |
|
Yes | - |
| startDate | DateTime |
|
Yes | - |
| endDate | DateTime |
|
Yes | - |
| CartItem | CartItem? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one Promotion
// Get one Promotion
const promotion = await prisma.promotion.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionWhereUniqueInput | Yes |
Find first Promotion
// Get one Promotion
const promotion = await prisma.promotion.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionWhereInput | No |
| orderBy | PromotionOrderByWithRelationInput[] | PromotionOrderByWithRelationInput | No |
| cursor | PromotionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PromotionScalarFieldEnum | PromotionScalarFieldEnum[] | No |
Find zero or more Promotion
// Get all Promotion
const Promotion = await prisma.promotion.findMany()
// Get first 10 Promotion
const Promotion = await prisma.promotion.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PromotionWhereInput | No |
| orderBy | PromotionOrderByWithRelationInput[] | PromotionOrderByWithRelationInput | No |
| cursor | PromotionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PromotionScalarFieldEnum | PromotionScalarFieldEnum[] | No |
Create one Promotion
// Create one Promotion
const Promotion = await prisma.promotion.create({
data: {
// ... data to create a Promotion
}
})
| Name | Type | Required |
|---|---|---|
| data | PromotionCreateInput | PromotionUncheckedCreateInput | Yes |
Delete one Promotion
// Delete one Promotion
const Promotion = await prisma.promotion.delete({
where: {
// ... filter to delete one Promotion
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionWhereUniqueInput | Yes |
Update one Promotion
// Update one Promotion
const promotion = await prisma.promotion.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PromotionUpdateInput | PromotionUncheckedUpdateInput | Yes |
| where | PromotionWhereUniqueInput | Yes |
Delete zero or more Promotion
// Delete a few Promotion
const { count } = await prisma.promotion.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionWhereInput | No |
Update zero or one Promotion
const { count } = await prisma.promotion.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PromotionUpdateManyMutationInput | PromotionUncheckedUpdateManyInput | Yes |
| where | PromotionWhereInput | No |
Create or update one Promotion
// Update or create a Promotion
const promotion = await prisma.promotion.upsert({
create: {
// ... data to create a Promotion
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Promotion we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionWhereUniqueInput | Yes |
| create | PromotionCreateInput | PromotionUncheckedCreateInput | Yes |
| update | PromotionUpdateInput | PromotionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| cartId | Int |
|
Yes | - |
| cart | Cart |
|
Yes | - |
| productId | Int |
|
Yes | - |
| product | Product |
|
Yes | - |
| quantity | Int |
|
Yes | - |
| Promotion | Promotion? |
|
No | - |
| promotionId | Int? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one CartItem
// Get one CartItem
const cartItem = await prisma.cartItem.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CartItemWhereUniqueInput | Yes |
Find first CartItem
// Get one CartItem
const cartItem = await prisma.cartItem.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CartItemWhereInput | No |
| orderBy | CartItemOrderByWithRelationInput[] | CartItemOrderByWithRelationInput | No |
| cursor | CartItemWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CartItemScalarFieldEnum | CartItemScalarFieldEnum[] | No |
Find zero or more CartItem
// Get all CartItem
const CartItem = await prisma.cartItem.findMany()
// Get first 10 CartItem
const CartItem = await prisma.cartItem.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CartItemWhereInput | No |
| orderBy | CartItemOrderByWithRelationInput[] | CartItemOrderByWithRelationInput | No |
| cursor | CartItemWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CartItemScalarFieldEnum | CartItemScalarFieldEnum[] | No |
Create one CartItem
// Create one CartItem
const CartItem = await prisma.cartItem.create({
data: {
// ... data to create a CartItem
}
})
| Name | Type | Required |
|---|---|---|
| data | CartItemCreateInput | CartItemUncheckedCreateInput | Yes |
Delete one CartItem
// Delete one CartItem
const CartItem = await prisma.cartItem.delete({
where: {
// ... filter to delete one CartItem
}
})
| Name | Type | Required |
|---|---|---|
| where | CartItemWhereUniqueInput | Yes |
Update one CartItem
// Update one CartItem
const cartItem = await prisma.cartItem.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CartItemUpdateInput | CartItemUncheckedUpdateInput | Yes |
| where | CartItemWhereUniqueInput | Yes |
Delete zero or more CartItem
// Delete a few CartItem
const { count } = await prisma.cartItem.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CartItemWhereInput | No |
Update zero or one CartItem
const { count } = await prisma.cartItem.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CartItemUpdateManyMutationInput | CartItemUncheckedUpdateManyInput | Yes |
| where | CartItemWhereInput | No |
Create or update one CartItem
// Update or create a CartItem
const cartItem = await prisma.cartItem.upsert({
create: {
// ... data to create a CartItem
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the CartItem we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CartItemWhereUniqueInput | Yes |
| create | CartItemCreateInput | CartItemUncheckedCreateInput | Yes |
| update | CartItemUpdateInput | CartItemUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| userId | Int |
|
Yes | - |
| user | User |
|
Yes | - |
| cartItems | CartItem[] |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one Cart
// Get one Cart
const cart = await prisma.cart.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CartWhereUniqueInput | Yes |
Find first Cart
// Get one Cart
const cart = await prisma.cart.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CartWhereInput | No |
| orderBy | CartOrderByWithRelationInput[] | CartOrderByWithRelationInput | No |
| cursor | CartWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CartScalarFieldEnum | CartScalarFieldEnum[] | No |
Find zero or more Cart
// Get all Cart
const Cart = await prisma.cart.findMany()
// Get first 10 Cart
const Cart = await prisma.cart.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CartWhereInput | No |
| orderBy | CartOrderByWithRelationInput[] | CartOrderByWithRelationInput | No |
| cursor | CartWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CartScalarFieldEnum | CartScalarFieldEnum[] | No |
Create one Cart
// Create one Cart
const Cart = await prisma.cart.create({
data: {
// ... data to create a Cart
}
})
| Name | Type | Required |
|---|---|---|
| data | CartCreateInput | CartUncheckedCreateInput | Yes |
Delete one Cart
// Delete one Cart
const Cart = await prisma.cart.delete({
where: {
// ... filter to delete one Cart
}
})
| Name | Type | Required |
|---|---|---|
| where | CartWhereUniqueInput | Yes |
Update one Cart
// Update one Cart
const cart = await prisma.cart.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CartUpdateInput | CartUncheckedUpdateInput | Yes |
| where | CartWhereUniqueInput | Yes |
Delete zero or more Cart
// Delete a few Cart
const { count } = await prisma.cart.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CartWhereInput | No |
Update zero or one Cart
const { count } = await prisma.cart.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CartUpdateManyMutationInput | CartUncheckedUpdateManyInput | Yes |
| where | CartWhereInput | No |
Create or update one Cart
// Update or create a Cart
const cart = await prisma.cart.upsert({
create: {
// ... data to create a Cart
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cart we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CartWhereUniqueInput | Yes |
| create | CartCreateInput | CartUncheckedCreateInput | Yes |
| update | CartUpdateInput | CartUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| status | OrderStatusType |
|
Yes | - |
| tax | Decimal |
|
Yes | - |
| total | Decimal |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| userId | Int |
|
Yes | - |
| user | User |
|
Yes | - |
| shippingDetail | ShippingDetail? |
|
No | - |
| paymentDetail | PaymentDetail? |
|
No | - |
| orderDetail | OrderDetail[] |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one Order
// Get one Order
const order = await prisma.order.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereUniqueInput | Yes |
Find first Order
// Get one Order
const order = await prisma.order.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereInput | No |
| orderBy | OrderOrderByWithRelationInput[] | OrderOrderByWithRelationInput | No |
| cursor | OrderWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderScalarFieldEnum | OrderScalarFieldEnum[] | No |
Find zero or more Order
// Get all Order
const Order = await prisma.order.findMany()
// Get first 10 Order
const Order = await prisma.order.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrderWhereInput | No |
| orderBy | OrderOrderByWithRelationInput[] | OrderOrderByWithRelationInput | No |
| cursor | OrderWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderScalarFieldEnum | OrderScalarFieldEnum[] | No |
Create one Order
// Create one Order
const Order = await prisma.order.create({
data: {
// ... data to create a Order
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderCreateInput | OrderUncheckedCreateInput | Yes |
Delete one Order
// Delete one Order
const Order = await prisma.order.delete({
where: {
// ... filter to delete one Order
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereUniqueInput | Yes |
Update one Order
// Update one Order
const order = await prisma.order.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderUpdateInput | OrderUncheckedUpdateInput | Yes |
| where | OrderWhereUniqueInput | Yes |
Delete zero or more Order
// Delete a few Order
const { count } = await prisma.order.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereInput | No |
Update zero or one Order
const { count } = await prisma.order.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderUpdateManyMutationInput | OrderUncheckedUpdateManyInput | Yes |
| where | OrderWhereInput | No |
Create or update one Order
// Update or create a Order
const order = await prisma.order.upsert({
create: {
// ... data to create a Order
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Order we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereUniqueInput | Yes |
| create | OrderCreateInput | OrderUncheckedCreateInput | Yes |
| update | OrderUpdateInput | OrderUncheckedUpdateInput | Yes |
Find zero or one OrderDetail
// Get one OrderDetail
const orderDetail = await prisma.orderDetail.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderDetailWhereUniqueInput | Yes |
Find first OrderDetail
// Get one OrderDetail
const orderDetail = await prisma.orderDetail.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderDetailWhereInput | No |
| orderBy | OrderDetailOrderByWithRelationInput[] | OrderDetailOrderByWithRelationInput | No |
| cursor | OrderDetailWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderDetailScalarFieldEnum | OrderDetailScalarFieldEnum[] | No |
Find zero or more OrderDetail
// Get all OrderDetail
const OrderDetail = await prisma.orderDetail.findMany()
// Get first 10 OrderDetail
const OrderDetail = await prisma.orderDetail.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrderDetailWhereInput | No |
| orderBy | OrderDetailOrderByWithRelationInput[] | OrderDetailOrderByWithRelationInput | No |
| cursor | OrderDetailWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderDetailScalarFieldEnum | OrderDetailScalarFieldEnum[] | No |
Create one OrderDetail
// Create one OrderDetail
const OrderDetail = await prisma.orderDetail.create({
data: {
// ... data to create a OrderDetail
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderDetailCreateInput | OrderDetailUncheckedCreateInput | Yes |
Delete one OrderDetail
// Delete one OrderDetail
const OrderDetail = await prisma.orderDetail.delete({
where: {
// ... filter to delete one OrderDetail
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderDetailWhereUniqueInput | Yes |
Update one OrderDetail
// Update one OrderDetail
const orderDetail = await prisma.orderDetail.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderDetailUpdateInput | OrderDetailUncheckedUpdateInput | Yes |
| where | OrderDetailWhereUniqueInput | Yes |
Delete zero or more OrderDetail
// Delete a few OrderDetail
const { count } = await prisma.orderDetail.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderDetailWhereInput | No |
Update zero or one OrderDetail
const { count } = await prisma.orderDetail.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderDetailUpdateManyMutationInput | OrderDetailUncheckedUpdateManyInput | Yes |
| where | OrderDetailWhereInput | No |
Create or update one OrderDetail
// Update or create a OrderDetail
const orderDetail = await prisma.orderDetail.upsert({
create: {
// ... data to create a OrderDetail
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the OrderDetail we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderDetailWhereUniqueInput | Yes |
| create | OrderDetailCreateInput | OrderDetailUncheckedCreateInput | Yes |
| update | OrderDetailUpdateInput | OrderDetailUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| paymentMethod | PaymentMethod[] |
|
Yes | - |
| billingAddressId | Int |
|
Yes | - |
| billingAddress | Address |
|
Yes | - |
| orderId | String |
|
Yes | - |
| order | Order |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one PaymentDetail
// Get one PaymentDetail
const paymentDetail = await prisma.paymentDetail.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentDetailWhereUniqueInput | Yes |
Find first PaymentDetail
// Get one PaymentDetail
const paymentDetail = await prisma.paymentDetail.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentDetailWhereInput | No |
| orderBy | PaymentDetailOrderByWithRelationInput[] | PaymentDetailOrderByWithRelationInput | No |
| cursor | PaymentDetailWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PaymentDetailScalarFieldEnum | PaymentDetailScalarFieldEnum[] | No |
Find zero or more PaymentDetail
// Get all PaymentDetail
const PaymentDetail = await prisma.paymentDetail.findMany()
// Get first 10 PaymentDetail
const PaymentDetail = await prisma.paymentDetail.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PaymentDetailWhereInput | No |
| orderBy | PaymentDetailOrderByWithRelationInput[] | PaymentDetailOrderByWithRelationInput | No |
| cursor | PaymentDetailWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PaymentDetailScalarFieldEnum | PaymentDetailScalarFieldEnum[] | No |
Create one PaymentDetail
// Create one PaymentDetail
const PaymentDetail = await prisma.paymentDetail.create({
data: {
// ... data to create a PaymentDetail
}
})
| Name | Type | Required |
|---|---|---|
| data | PaymentDetailCreateInput | PaymentDetailUncheckedCreateInput | Yes |
Delete one PaymentDetail
// Delete one PaymentDetail
const PaymentDetail = await prisma.paymentDetail.delete({
where: {
// ... filter to delete one PaymentDetail
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentDetailWhereUniqueInput | Yes |
Update one PaymentDetail
// Update one PaymentDetail
const paymentDetail = await prisma.paymentDetail.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PaymentDetailUpdateInput | PaymentDetailUncheckedUpdateInput | Yes |
| where | PaymentDetailWhereUniqueInput | Yes |
Delete zero or more PaymentDetail
// Delete a few PaymentDetail
const { count } = await prisma.paymentDetail.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentDetailWhereInput | No |
Update zero or one PaymentDetail
const { count } = await prisma.paymentDetail.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PaymentDetailUpdateManyMutationInput | PaymentDetailUncheckedUpdateManyInput | Yes |
| where | PaymentDetailWhereInput | No |
Create or update one PaymentDetail
// Update or create a PaymentDetail
const paymentDetail = await prisma.paymentDetail.upsert({
create: {
// ... data to create a PaymentDetail
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PaymentDetail we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentDetailWhereUniqueInput | Yes |
| create | PaymentDetailCreateInput | PaymentDetailUncheckedCreateInput | Yes |
| update | PaymentDetailUpdateInput | PaymentDetailUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| paymentType | PaymentType |
|
Yes | - |
| paymentMethod | PaymentMethod[] |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one PaymentOption
// Get one PaymentOption
const paymentOption = await prisma.paymentOption.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentOptionWhereUniqueInput | Yes |
Find first PaymentOption
// Get one PaymentOption
const paymentOption = await prisma.paymentOption.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentOptionWhereInput | No |
| orderBy | PaymentOptionOrderByWithRelationInput[] | PaymentOptionOrderByWithRelationInput | No |
| cursor | PaymentOptionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PaymentOptionScalarFieldEnum | PaymentOptionScalarFieldEnum[] | No |
Find zero or more PaymentOption
// Get all PaymentOption
const PaymentOption = await prisma.paymentOption.findMany()
// Get first 10 PaymentOption
const PaymentOption = await prisma.paymentOption.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PaymentOptionWhereInput | No |
| orderBy | PaymentOptionOrderByWithRelationInput[] | PaymentOptionOrderByWithRelationInput | No |
| cursor | PaymentOptionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PaymentOptionScalarFieldEnum | PaymentOptionScalarFieldEnum[] | No |
Create one PaymentOption
// Create one PaymentOption
const PaymentOption = await prisma.paymentOption.create({
data: {
// ... data to create a PaymentOption
}
})
| Name | Type | Required |
|---|---|---|
| data | PaymentOptionCreateInput | PaymentOptionUncheckedCreateInput | Yes |
Delete one PaymentOption
// Delete one PaymentOption
const PaymentOption = await prisma.paymentOption.delete({
where: {
// ... filter to delete one PaymentOption
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentOptionWhereUniqueInput | Yes |
Update one PaymentOption
// Update one PaymentOption
const paymentOption = await prisma.paymentOption.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PaymentOptionUpdateInput | PaymentOptionUncheckedUpdateInput | Yes |
| where | PaymentOptionWhereUniqueInput | Yes |
Delete zero or more PaymentOption
// Delete a few PaymentOption
const { count } = await prisma.paymentOption.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentOptionWhereInput | No |
Update zero or one PaymentOption
const { count } = await prisma.paymentOption.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PaymentOptionUpdateManyMutationInput | PaymentOptionUncheckedUpdateManyInput | Yes |
| where | PaymentOptionWhereInput | No |
Create or update one PaymentOption
// Update or create a PaymentOption
const paymentOption = await prisma.paymentOption.upsert({
create: {
// ... data to create a PaymentOption
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PaymentOption we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentOptionWhereUniqueInput | Yes |
| create | PaymentOptionCreateInput | PaymentOptionUncheckedCreateInput | Yes |
| update | PaymentOptionUpdateInput | PaymentOptionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| userId | Int |
|
Yes | - |
| user | User |
|
Yes | - |
| paymentDetailId | Int |
|
Yes | - |
| paymentDetail | PaymentDetail |
|
Yes | - |
| paymentOptionId | Int |
|
Yes | - |
| paymentOption | PaymentOption |
|
Yes | - |
| cardProvider | String? |
|
No | - |
| nameOnCard | String? |
|
No | - |
| isDefault | Boolean |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one PaymentMethod
// Get one PaymentMethod
const paymentMethod = await prisma.paymentMethod.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentMethodWhereUniqueInput | Yes |
Find first PaymentMethod
// Get one PaymentMethod
const paymentMethod = await prisma.paymentMethod.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentMethodWhereInput | No |
| orderBy | PaymentMethodOrderByWithRelationInput[] | PaymentMethodOrderByWithRelationInput | No |
| cursor | PaymentMethodWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PaymentMethodScalarFieldEnum | PaymentMethodScalarFieldEnum[] | No |
Find zero or more PaymentMethod
// Get all PaymentMethod
const PaymentMethod = await prisma.paymentMethod.findMany()
// Get first 10 PaymentMethod
const PaymentMethod = await prisma.paymentMethod.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PaymentMethodWhereInput | No |
| orderBy | PaymentMethodOrderByWithRelationInput[] | PaymentMethodOrderByWithRelationInput | No |
| cursor | PaymentMethodWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PaymentMethodScalarFieldEnum | PaymentMethodScalarFieldEnum[] | No |
Create one PaymentMethod
// Create one PaymentMethod
const PaymentMethod = await prisma.paymentMethod.create({
data: {
// ... data to create a PaymentMethod
}
})
| Name | Type | Required |
|---|---|---|
| data | PaymentMethodCreateInput | PaymentMethodUncheckedCreateInput | Yes |
Delete one PaymentMethod
// Delete one PaymentMethod
const PaymentMethod = await prisma.paymentMethod.delete({
where: {
// ... filter to delete one PaymentMethod
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentMethodWhereUniqueInput | Yes |
Update one PaymentMethod
// Update one PaymentMethod
const paymentMethod = await prisma.paymentMethod.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PaymentMethodUpdateInput | PaymentMethodUncheckedUpdateInput | Yes |
| where | PaymentMethodWhereUniqueInput | Yes |
Delete zero or more PaymentMethod
// Delete a few PaymentMethod
const { count } = await prisma.paymentMethod.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentMethodWhereInput | No |
Update zero or one PaymentMethod
const { count } = await prisma.paymentMethod.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PaymentMethodUpdateManyMutationInput | PaymentMethodUncheckedUpdateManyInput | Yes |
| where | PaymentMethodWhereInput | No |
Create or update one PaymentMethod
// Update or create a PaymentMethod
const paymentMethod = await prisma.paymentMethod.upsert({
create: {
// ... data to create a PaymentMethod
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PaymentMethod we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentMethodWhereUniqueInput | Yes |
| create | PaymentMethodCreateInput | PaymentMethodUncheckedCreateInput | Yes |
| update | PaymentMethodUpdateInput | PaymentMethodUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| estimatedArrival | DateTime |
|
Yes | - |
| shippingAddressId | Int |
|
Yes | - |
| shippingAddress | Address |
|
Yes | - |
| shippingMethodId | Int |
|
Yes | - |
| shippingMethod | ShippingMethod |
|
Yes | - |
| orderId | String |
|
Yes | - |
| order | Order |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one ShippingDetail
// Get one ShippingDetail
const shippingDetail = await prisma.shippingDetail.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ShippingDetailWhereUniqueInput | Yes |
Find first ShippingDetail
// Get one ShippingDetail
const shippingDetail = await prisma.shippingDetail.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ShippingDetailWhereInput | No |
| orderBy | ShippingDetailOrderByWithRelationInput[] | ShippingDetailOrderByWithRelationInput | No |
| cursor | ShippingDetailWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ShippingDetailScalarFieldEnum | ShippingDetailScalarFieldEnum[] | No |
Find zero or more ShippingDetail
// Get all ShippingDetail
const ShippingDetail = await prisma.shippingDetail.findMany()
// Get first 10 ShippingDetail
const ShippingDetail = await prisma.shippingDetail.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ShippingDetailWhereInput | No |
| orderBy | ShippingDetailOrderByWithRelationInput[] | ShippingDetailOrderByWithRelationInput | No |
| cursor | ShippingDetailWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ShippingDetailScalarFieldEnum | ShippingDetailScalarFieldEnum[] | No |
Create one ShippingDetail
// Create one ShippingDetail
const ShippingDetail = await prisma.shippingDetail.create({
data: {
// ... data to create a ShippingDetail
}
})
| Name | Type | Required |
|---|---|---|
| data | ShippingDetailCreateInput | ShippingDetailUncheckedCreateInput | Yes |
Delete one ShippingDetail
// Delete one ShippingDetail
const ShippingDetail = await prisma.shippingDetail.delete({
where: {
// ... filter to delete one ShippingDetail
}
})
| Name | Type | Required |
|---|---|---|
| where | ShippingDetailWhereUniqueInput | Yes |
Update one ShippingDetail
// Update one ShippingDetail
const shippingDetail = await prisma.shippingDetail.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ShippingDetailUpdateInput | ShippingDetailUncheckedUpdateInput | Yes |
| where | ShippingDetailWhereUniqueInput | Yes |
Delete zero or more ShippingDetail
// Delete a few ShippingDetail
const { count } = await prisma.shippingDetail.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ShippingDetailWhereInput | No |
Update zero or one ShippingDetail
const { count } = await prisma.shippingDetail.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ShippingDetailUpdateManyMutationInput | ShippingDetailUncheckedUpdateManyInput | Yes |
| where | ShippingDetailWhereInput | No |
Create or update one ShippingDetail
// Update or create a ShippingDetail
const shippingDetail = await prisma.shippingDetail.upsert({
create: {
// ... data to create a ShippingDetail
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ShippingDetail we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ShippingDetailWhereUniqueInput | Yes |
| create | ShippingDetailCreateInput | ShippingDetailUncheckedCreateInput | Yes |
| update | ShippingDetailUpdateInput | ShippingDetailUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| shippingDetail | ShippingDetail[] |
|
Yes | - |
| name | String |
|
Yes | - |
| price | Decimal |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one ShippingMethod
// Get one ShippingMethod
const shippingMethod = await prisma.shippingMethod.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ShippingMethodWhereUniqueInput | Yes |
Find first ShippingMethod
// Get one ShippingMethod
const shippingMethod = await prisma.shippingMethod.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ShippingMethodWhereInput | No |
| orderBy | ShippingMethodOrderByWithRelationInput[] | ShippingMethodOrderByWithRelationInput | No |
| cursor | ShippingMethodWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ShippingMethodScalarFieldEnum | ShippingMethodScalarFieldEnum[] | No |
Find zero or more ShippingMethod
// Get all ShippingMethod
const ShippingMethod = await prisma.shippingMethod.findMany()
// Get first 10 ShippingMethod
const ShippingMethod = await prisma.shippingMethod.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ShippingMethodWhereInput | No |
| orderBy | ShippingMethodOrderByWithRelationInput[] | ShippingMethodOrderByWithRelationInput | No |
| cursor | ShippingMethodWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ShippingMethodScalarFieldEnum | ShippingMethodScalarFieldEnum[] | No |
Create one ShippingMethod
// Create one ShippingMethod
const ShippingMethod = await prisma.shippingMethod.create({
data: {
// ... data to create a ShippingMethod
}
})
| Name | Type | Required |
|---|---|---|
| data | ShippingMethodCreateInput | ShippingMethodUncheckedCreateInput | Yes |
Delete one ShippingMethod
// Delete one ShippingMethod
const ShippingMethod = await prisma.shippingMethod.delete({
where: {
// ... filter to delete one ShippingMethod
}
})
| Name | Type | Required |
|---|---|---|
| where | ShippingMethodWhereUniqueInput | Yes |
Update one ShippingMethod
// Update one ShippingMethod
const shippingMethod = await prisma.shippingMethod.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ShippingMethodUpdateInput | ShippingMethodUncheckedUpdateInput | Yes |
| where | ShippingMethodWhereUniqueInput | Yes |
Delete zero or more ShippingMethod
// Delete a few ShippingMethod
const { count } = await prisma.shippingMethod.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ShippingMethodWhereInput | No |
Update zero or one ShippingMethod
const { count } = await prisma.shippingMethod.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ShippingMethodUpdateManyMutationInput | ShippingMethodUncheckedUpdateManyInput | Yes |
| where | ShippingMethodWhereInput | No |
Create or update one ShippingMethod
// Update or create a ShippingMethod
const shippingMethod = await prisma.shippingMethod.upsert({
create: {
// ... data to create a ShippingMethod
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ShippingMethod we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ShippingMethodWhereUniqueInput | Yes |
| create | ShippingMethodCreateInput | ShippingMethodUncheckedCreateInput | Yes |
| update | ShippingMethodUpdateInput | ShippingMethodUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
Find zero or one Invoice
// Get one Invoice
const invoice = await prisma.invoice.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | InvoiceWhereUniqueInput | Yes |
Find first Invoice
// Get one Invoice
const invoice = await prisma.invoice.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | InvoiceWhereInput | No |
| orderBy | InvoiceOrderByWithRelationInput[] | InvoiceOrderByWithRelationInput | No |
| cursor | InvoiceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | InvoiceScalarFieldEnum | InvoiceScalarFieldEnum[] | No |
Find zero or more Invoice
// Get all Invoice
const Invoice = await prisma.invoice.findMany()
// Get first 10 Invoice
const Invoice = await prisma.invoice.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | InvoiceWhereInput | No |
| orderBy | InvoiceOrderByWithRelationInput[] | InvoiceOrderByWithRelationInput | No |
| cursor | InvoiceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | InvoiceScalarFieldEnum | InvoiceScalarFieldEnum[] | No |
Create one Invoice
// Create one Invoice
const Invoice = await prisma.invoice.create({
data: {
// ... data to create a Invoice
}
})
| Name | Type | Required |
|---|---|---|
| data | InvoiceCreateInput | InvoiceUncheckedCreateInput | No |
Delete one Invoice
// Delete one Invoice
const Invoice = await prisma.invoice.delete({
where: {
// ... filter to delete one Invoice
}
})
| Name | Type | Required |
|---|---|---|
| where | InvoiceWhereUniqueInput | Yes |
Update one Invoice
// Update one Invoice
const invoice = await prisma.invoice.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | InvoiceUpdateInput | InvoiceUncheckedUpdateInput | Yes |
| where | InvoiceWhereUniqueInput | Yes |
Delete zero or more Invoice
// Delete a few Invoice
const { count } = await prisma.invoice.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | InvoiceWhereInput | No |
Update zero or one Invoice
const { count } = await prisma.invoice.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | InvoiceUpdateManyMutationInput | InvoiceUncheckedUpdateManyInput | Yes |
| where | InvoiceWhereInput | No |
Create or update one Invoice
// Update or create a Invoice
const invoice = await prisma.invoice.upsert({
create: {
// ... data to create a Invoice
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Invoice we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | InvoiceWhereUniqueInput | Yes |
| create | InvoiceCreateInput | InvoiceUncheckedCreateInput | Yes |
| update | InvoiceUpdateInput | InvoiceUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
Find zero or one UserRole
// Get one UserRole
const userRole = await prisma.userRole.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleWhereUniqueInput | Yes |
Find first UserRole
// Get one UserRole
const userRole = await prisma.userRole.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleWhereInput | No |
| orderBy | UserRoleOrderByWithRelationInput[] | UserRoleOrderByWithRelationInput | No |
| cursor | UserRoleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserRoleScalarFieldEnum | UserRoleScalarFieldEnum[] | No |
Find zero or more UserRole
// Get all UserRole
const UserRole = await prisma.userRole.findMany()
// Get first 10 UserRole
const UserRole = await prisma.userRole.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserRoleWhereInput | No |
| orderBy | UserRoleOrderByWithRelationInput[] | UserRoleOrderByWithRelationInput | No |
| cursor | UserRoleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserRoleScalarFieldEnum | UserRoleScalarFieldEnum[] | No |
Create one UserRole
// Create one UserRole
const UserRole = await prisma.userRole.create({
data: {
// ... data to create a UserRole
}
})
| Name | Type | Required |
|---|---|---|
| data | UserRoleCreateInput | UserRoleUncheckedCreateInput | Yes |
Delete one UserRole
// Delete one UserRole
const UserRole = await prisma.userRole.delete({
where: {
// ... filter to delete one UserRole
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleWhereUniqueInput | Yes |
Update one UserRole
// Update one UserRole
const userRole = await prisma.userRole.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserRoleUpdateInput | UserRoleUncheckedUpdateInput | Yes |
| where | UserRoleWhereUniqueInput | Yes |
Delete zero or more UserRole
// Delete a few UserRole
const { count } = await prisma.userRole.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleWhereInput | No |
Update zero or one UserRole
const { count } = await prisma.userRole.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserRoleUpdateManyMutationInput | UserRoleUncheckedUpdateManyInput | Yes |
| where | UserRoleWhereInput | No |
Create or update one UserRole
// Update or create a UserRole
const userRole = await prisma.userRole.upsert({
create: {
// ... data to create a UserRole
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserRole we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleWhereUniqueInput | Yes |
| create | UserRoleCreateInput | UserRoleUncheckedCreateInput | Yes |
| update | UserRoleUpdateInput | UserRoleUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| name | String |
|
Yes | - |
| users | UserRole[] |
|
Yes | - |
| permissions | RolePermission[] |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one Role
// Get one Role
const role = await prisma.role.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereUniqueInput | Yes |
Find first Role
// Get one Role
const role = await prisma.role.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereInput | No |
| orderBy | RoleOrderByWithRelationInput[] | RoleOrderByWithRelationInput | No |
| cursor | RoleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RoleScalarFieldEnum | RoleScalarFieldEnum[] | No |
Find zero or more Role
// Get all Role
const Role = await prisma.role.findMany()
// Get first 10 Role
const Role = await prisma.role.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RoleWhereInput | No |
| orderBy | RoleOrderByWithRelationInput[] | RoleOrderByWithRelationInput | No |
| cursor | RoleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RoleScalarFieldEnum | RoleScalarFieldEnum[] | No |
Create one Role
// Create one Role
const Role = await prisma.role.create({
data: {
// ... data to create a Role
}
})
| Name | Type | Required |
|---|---|---|
| data | RoleCreateInput | RoleUncheckedCreateInput | Yes |
Delete one Role
// Delete one Role
const Role = await prisma.role.delete({
where: {
// ... filter to delete one Role
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereUniqueInput | Yes |
Update one Role
// Update one Role
const role = await prisma.role.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RoleUpdateInput | RoleUncheckedUpdateInput | Yes |
| where | RoleWhereUniqueInput | Yes |
Delete zero or more Role
// Delete a few Role
const { count } = await prisma.role.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereInput | No |
Update zero or one Role
const { count } = await prisma.role.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RoleUpdateManyMutationInput | RoleUncheckedUpdateManyInput | Yes |
| where | RoleWhereInput | No |
Create or update one Role
// Update or create a Role
const role = await prisma.role.upsert({
create: {
// ... data to create a Role
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Role we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereUniqueInput | Yes |
| create | RoleCreateInput | RoleUncheckedCreateInput | Yes |
| update | RoleUpdateInput | RoleUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| role | Role |
|
Yes | - |
| permission | Permission |
|
Yes | - |
| roleId | Int |
|
Yes | - |
| permissionId | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one RolePermission
// Get one RolePermission
const rolePermission = await prisma.rolePermission.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RolePermissionWhereUniqueInput | Yes |
Find first RolePermission
// Get one RolePermission
const rolePermission = await prisma.rolePermission.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RolePermissionWhereInput | No |
| orderBy | RolePermissionOrderByWithRelationInput[] | RolePermissionOrderByWithRelationInput | No |
| cursor | RolePermissionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RolePermissionScalarFieldEnum | RolePermissionScalarFieldEnum[] | No |
Find zero or more RolePermission
// Get all RolePermission
const RolePermission = await prisma.rolePermission.findMany()
// Get first 10 RolePermission
const RolePermission = await prisma.rolePermission.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RolePermissionWhereInput | No |
| orderBy | RolePermissionOrderByWithRelationInput[] | RolePermissionOrderByWithRelationInput | No |
| cursor | RolePermissionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RolePermissionScalarFieldEnum | RolePermissionScalarFieldEnum[] | No |
Create one RolePermission
// Create one RolePermission
const RolePermission = await prisma.rolePermission.create({
data: {
// ... data to create a RolePermission
}
})
| Name | Type | Required |
|---|---|---|
| data | RolePermissionCreateInput | RolePermissionUncheckedCreateInput | Yes |
Delete one RolePermission
// Delete one RolePermission
const RolePermission = await prisma.rolePermission.delete({
where: {
// ... filter to delete one RolePermission
}
})
| Name | Type | Required |
|---|---|---|
| where | RolePermissionWhereUniqueInput | Yes |
Update one RolePermission
// Update one RolePermission
const rolePermission = await prisma.rolePermission.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RolePermissionUpdateInput | RolePermissionUncheckedUpdateInput | Yes |
| where | RolePermissionWhereUniqueInput | Yes |
Delete zero or more RolePermission
// Delete a few RolePermission
const { count } = await prisma.rolePermission.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RolePermissionWhereInput | No |
Update zero or one RolePermission
const { count } = await prisma.rolePermission.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RolePermissionUpdateManyMutationInput | RolePermissionUncheckedUpdateManyInput | Yes |
| where | RolePermissionWhereInput | No |
Create or update one RolePermission
// Update or create a RolePermission
const rolePermission = await prisma.rolePermission.upsert({
create: {
// ... data to create a RolePermission
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the RolePermission we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RolePermissionWhereUniqueInput | Yes |
| create | RolePermissionCreateInput | RolePermissionUncheckedCreateInput | Yes |
| update | RolePermissionUpdateInput | RolePermissionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| resource | String |
|
Yes | - |
| accessType | AccessType |
|
Yes | - |
| roles | RolePermission[] |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one Permission
// Get one Permission
const permission = await prisma.permission.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PermissionWhereUniqueInput | Yes |
Find first Permission
// Get one Permission
const permission = await prisma.permission.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PermissionWhereInput | No |
| orderBy | PermissionOrderByWithRelationInput[] | PermissionOrderByWithRelationInput | No |
| cursor | PermissionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PermissionScalarFieldEnum | PermissionScalarFieldEnum[] | No |
Find zero or more Permission
// Get all Permission
const Permission = await prisma.permission.findMany()
// Get first 10 Permission
const Permission = await prisma.permission.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PermissionWhereInput | No |
| orderBy | PermissionOrderByWithRelationInput[] | PermissionOrderByWithRelationInput | No |
| cursor | PermissionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PermissionScalarFieldEnum | PermissionScalarFieldEnum[] | No |
Create one Permission
// Create one Permission
const Permission = await prisma.permission.create({
data: {
// ... data to create a Permission
}
})
| Name | Type | Required |
|---|---|---|
| data | PermissionCreateInput | PermissionUncheckedCreateInput | Yes |
Delete one Permission
// Delete one Permission
const Permission = await prisma.permission.delete({
where: {
// ... filter to delete one Permission
}
})
| Name | Type | Required |
|---|---|---|
| where | PermissionWhereUniqueInput | Yes |
Update one Permission
// Update one Permission
const permission = await prisma.permission.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PermissionUpdateInput | PermissionUncheckedUpdateInput | Yes |
| where | PermissionWhereUniqueInput | Yes |
Delete zero or more Permission
// Delete a few Permission
const { count } = await prisma.permission.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PermissionWhereInput | No |
Update zero or one Permission
const { count } = await prisma.permission.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PermissionUpdateManyMutationInput | PermissionUncheckedUpdateManyInput | Yes |
| where | PermissionWhereInput | No |
Create or update one Permission
// Update or create a Permission
const permission = await prisma.permission.upsert({
create: {
// ... data to create a Permission
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Permission we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PermissionWhereUniqueInput | Yes |
| create | PermissionCreateInput | PermissionUncheckedCreateInput | Yes |
| update | PermissionUpdateInput | PermissionUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| sku | String | No |
| slug | String | No |
| AND | ProductWhereInput | ProductWhereInput[] | No |
| OR | ProductWhereInput[] | No |
| NOT | ProductWhereInput | ProductWhereInput[] | No |
| productName | StringFilter | String | No |
| productDesc | StringFilter | String | No |
| shortDesc | StringNullableFilter | String | Null | Yes |
| grade | EnumGradeNullableFilter | Grade | Null | Yes |
| price | DecimalFilter | Decimal | No |
| msrp | DecimalNullableFilter | Decimal | Null | Yes |
| size | StringNullableFilter | String | Null | Yes |
| weight | DecimalNullableFilter | Decimal | Null | Yes |
| weightUnit | StringNullableFilter | String | Null | Yes |
| features | JsonNullableFilter | No |
| quantity | IntNullableFilter | Int | Null | Yes |
| soldQuantity | IntNullableFilter | Int | Null | Yes |
| isActive | BoolNullableFilter | Boolean | Null | Yes |
| isAvailable | BoolNullableFilter | Boolean | Null | Yes |
| imageUrl | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| categoryId | IntFilter | Int | No |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| orderDetail | OrderDetailListRelationFilter | No |
| cartItem | CartItemListRelationFilter | No |
| productInventory | ProductInventoryListRelationFilter | No |
| productImage | ProductImageListRelationFilter | No |
| reviews | UserReviewListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| productName | SortOrder | No |
| productDesc | SortOrder | No |
| shortDesc | SortOrder | SortOrderInput | No |
| grade | SortOrder | SortOrderInput | No |
| sku | SortOrder | SortOrderInput | No |
| price | SortOrder | No |
| msrp | SortOrder | SortOrderInput | No |
| size | SortOrder | SortOrderInput | No |
| weight | SortOrder | SortOrderInput | No |
| weightUnit | SortOrder | SortOrderInput | No |
| features | SortOrder | SortOrderInput | No |
| quantity | SortOrder | SortOrderInput | No |
| soldQuantity | SortOrder | SortOrderInput | No |
| isActive | SortOrder | SortOrderInput | No |
| isAvailable | SortOrder | SortOrderInput | No |
| slug | SortOrder | SortOrderInput | No |
| imageUrl | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| categoryId | SortOrder | No |
| _count | ProductCountOrderByAggregateInput | No |
| _avg | ProductAvgOrderByAggregateInput | No |
| _max | ProductMaxOrderByAggregateInput | No |
| _min | ProductMinOrderByAggregateInput | No |
| _sum | ProductSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryWhereInput | CategoryWhereInput[] | No |
| OR | CategoryWhereInput[] | No |
| NOT | CategoryWhereInput | CategoryWhereInput[] | No |
| id | IntFilter | Int | No |
| categoryName | StringFilter | String | No |
| categoryDesc | StringFilter | String | No |
| slug | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| parentCategoryId | IntNullableFilter | Int | Null | Yes |
| parentCategory | CategoryNullableRelationFilter | CategoryWhereInput | Null | Yes |
| childCategories | CategoryListRelationFilter | No |
| product | ProductListRelationFilter | No |
| promotionCategory | PromotionCategoryListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryName | SortOrder | No |
| categoryDesc | SortOrder | No |
| slug | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| parentCategoryId | SortOrder | SortOrderInput | No |
| parentCategory | CategoryOrderByWithRelationInput | No |
| childCategories | CategoryOrderByRelationAggregateInput | No |
| product | ProductOrderByRelationAggregateInput | No |
| promotionCategory | PromotionCategoryOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryName | String | No |
| slug | String | No |
| AND | CategoryWhereInput | CategoryWhereInput[] | No |
| OR | CategoryWhereInput[] | No |
| NOT | CategoryWhereInput | CategoryWhereInput[] | No |
| categoryDesc | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| parentCategoryId | IntNullableFilter | Int | Null | Yes |
| parentCategory | CategoryNullableRelationFilter | CategoryWhereInput | Null | Yes |
| childCategories | CategoryListRelationFilter | No |
| product | ProductListRelationFilter | No |
| promotionCategory | PromotionCategoryListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryName | SortOrder | No |
| categoryDesc | SortOrder | No |
| slug | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| parentCategoryId | SortOrder | SortOrderInput | No |
| _count | CategoryCountOrderByAggregateInput | No |
| _avg | CategoryAvgOrderByAggregateInput | No |
| _max | CategoryMaxOrderByAggregateInput | No |
| _min | CategoryMinOrderByAggregateInput | No |
| _sum | CategorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryScalarWhereWithAggregatesInput | CategoryScalarWhereWithAggregatesInput[] | No |
| OR | CategoryScalarWhereWithAggregatesInput[] | No |
| NOT | CategoryScalarWhereWithAggregatesInput | CategoryScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| categoryName | StringWithAggregatesFilter | String | No |
| categoryDesc | StringWithAggregatesFilter | String | No |
| slug | StringNullableWithAggregatesFilter | String | Null | Yes |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| parentCategoryId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | ProductInventoryWhereInput | ProductInventoryWhereInput[] | No |
| OR | ProductInventoryWhereInput[] | No |
| NOT | ProductInventoryWhereInput | ProductInventoryWhereInput[] | No |
| id | IntFilter | Int | No |
| quantity | IntFilter | Int | No |
| reStockLevel | IntNullableFilter | Int | Null | Yes |
| status | EnumInventoryStatusFilter | InventoryStatus | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| productId | IntFilter | Int | No |
| product | ProductRelationFilter | ProductWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| quantity | SortOrder | No |
| reStockLevel | SortOrder | SortOrderInput | No |
| status | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| productId | SortOrder | No |
| product | ProductOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | ProductInventoryWhereInput | ProductInventoryWhereInput[] | No |
| OR | ProductInventoryWhereInput[] | No |
| NOT | ProductInventoryWhereInput | ProductInventoryWhereInput[] | No |
| quantity | IntFilter | Int | No |
| reStockLevel | IntNullableFilter | Int | Null | Yes |
| status | EnumInventoryStatusFilter | InventoryStatus | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| productId | IntFilter | Int | No |
| product | ProductRelationFilter | ProductWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| quantity | SortOrder | No |
| reStockLevel | SortOrder | SortOrderInput | No |
| status | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| productId | SortOrder | No |
| _count | ProductInventoryCountOrderByAggregateInput | No |
| _avg | ProductInventoryAvgOrderByAggregateInput | No |
| _max | ProductInventoryMaxOrderByAggregateInput | No |
| _min | ProductInventoryMinOrderByAggregateInput | No |
| _sum | ProductInventorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ProductInventoryScalarWhereWithAggregatesInput | ProductInventoryScalarWhereWithAggregatesInput[] | No |
| OR | ProductInventoryScalarWhereWithAggregatesInput[] | No |
| NOT | ProductInventoryScalarWhereWithAggregatesInput | ProductInventoryScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| quantity | IntWithAggregatesFilter | Int | No |
| reStockLevel | IntNullableWithAggregatesFilter | Int | Null | Yes |
| status | EnumInventoryStatusWithAggregatesFilter | InventoryStatus | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| productId | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ProductImageWhereInput | ProductImageWhereInput[] | No |
| OR | ProductImageWhereInput[] | No |
| NOT | ProductImageWhereInput | ProductImageWhereInput[] | No |
| id | IntFilter | Int | No |
| imageUrl | StringFilter | String | No |
| productId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| product | ProductRelationFilter | ProductWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| imageUrl | SortOrder | No |
| productId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| product | ProductOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | ProductImageWhereInput | ProductImageWhereInput[] | No |
| OR | ProductImageWhereInput[] | No |
| NOT | ProductImageWhereInput | ProductImageWhereInput[] | No |
| imageUrl | StringFilter | String | No |
| productId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| product | ProductRelationFilter | ProductWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| imageUrl | SortOrder | No |
| productId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | ProductImageCountOrderByAggregateInput | No |
| _avg | ProductImageAvgOrderByAggregateInput | No |
| _max | ProductImageMaxOrderByAggregateInput | No |
| _min | ProductImageMinOrderByAggregateInput | No |
| _sum | ProductImageSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ProductImageScalarWhereWithAggregatesInput | ProductImageScalarWhereWithAggregatesInput[] | No |
| OR | ProductImageScalarWhereWithAggregatesInput[] | No |
| NOT | ProductImageScalarWhereWithAggregatesInput | ProductImageScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| imageUrl | StringWithAggregatesFilter | String | No |
| productId | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserWhereInput | UserWhereInput[] | No |
| OR | UserWhereInput[] | No |
| NOT | UserWhereInput | UserWhereInput[] | No |
| id | IntFilter | Int | No |
| StringFilter | String | No | |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| preference | JsonNullableFilter | No |
| balance | IntFilter | Int | No |
| authenticationToken | AuthenticationTokenNullableRelationFilter | AuthenticationTokenWhereInput | Null | Yes |
| profile | UserProfileNullableRelationFilter | UserProfileWhereInput | Null | Yes |
| authoredReviews | UserReviewListRelationFilter | No |
| cart | CartNullableRelationFilter | CartWhereInput | Null | Yes |
| login | LoginNullableRelationFilter | LoginWhereInput | Null | Yes |
| roles | UserRoleListRelationFilter | No |
| paymentMethod | PaymentMethodListRelationFilter | No |
| orders | OrderListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| SortOrder | No | |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| preference | SortOrder | SortOrderInput | No |
| balance | SortOrder | No |
| authenticationToken | AuthenticationTokenOrderByWithRelationInput | No |
| profile | UserProfileOrderByWithRelationInput | No |
| authoredReviews | UserReviewOrderByRelationAggregateInput | No |
| cart | CartOrderByWithRelationInput | No |
| login | LoginOrderByWithRelationInput | No |
| roles | UserRoleOrderByRelationAggregateInput | No |
| paymentMethod | PaymentMethodOrderByRelationAggregateInput | No |
| orders | OrderOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| AND | UserWhereInput | UserWhereInput[] | No |
| OR | UserWhereInput[] | No |
| NOT | UserWhereInput | UserWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| preference | JsonNullableFilter | No |
| balance | IntFilter | Int | No |
| authenticationToken | AuthenticationTokenNullableRelationFilter | AuthenticationTokenWhereInput | Null | Yes |
| profile | UserProfileNullableRelationFilter | UserProfileWhereInput | Null | Yes |
| authoredReviews | UserReviewListRelationFilter | No |
| cart | CartNullableRelationFilter | CartWhereInput | Null | Yes |
| login | LoginNullableRelationFilter | LoginWhereInput | Null | Yes |
| roles | UserRoleListRelationFilter | No |
| paymentMethod | PaymentMethodListRelationFilter | No |
| orders | OrderListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| SortOrder | No | |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| preference | SortOrder | SortOrderInput | No |
| balance | SortOrder | No |
| _count | UserCountOrderByAggregateInput | No |
| _avg | UserAvgOrderByAggregateInput | No |
| _max | UserMaxOrderByAggregateInput | No |
| _min | UserMinOrderByAggregateInput | No |
| _sum | UserSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| OR | UserScalarWhereWithAggregatesInput[] | No |
| NOT | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| StringWithAggregatesFilter | String | No | |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| preference | JsonNullableWithAggregatesFilter | No |
| balance | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LoginWhereInput | LoginWhereInput[] | No |
| OR | LoginWhereInput[] | No |
| NOT | LoginWhereInput | LoginWhereInput[] | No |
| id | StringFilter | String | No |
| username | StringFilter | String | No |
| password | StringFilter | String | No |
| failedAttempts | IntFilter | Int | No |
| lockoutTime | DateTimeNullableFilter | DateTime | Null | Yes |
| lastLogin | DateTimeNullableFilter | DateTime | Null | Yes |
| userId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| username | SortOrder | No |
| password | SortOrder | No |
| failedAttempts | SortOrder | No |
| lockoutTime | SortOrder | SortOrderInput | No |
| lastLogin | SortOrder | SortOrderInput | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| username | String | No |
| userId | Int | No |
| AND | LoginWhereInput | LoginWhereInput[] | No |
| OR | LoginWhereInput[] | No |
| NOT | LoginWhereInput | LoginWhereInput[] | No |
| password | StringFilter | String | No |
| failedAttempts | IntFilter | Int | No |
| lockoutTime | DateTimeNullableFilter | DateTime | Null | Yes |
| lastLogin | DateTimeNullableFilter | DateTime | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| username | SortOrder | No |
| password | SortOrder | No |
| failedAttempts | SortOrder | No |
| lockoutTime | SortOrder | SortOrderInput | No |
| lastLogin | SortOrder | SortOrderInput | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | LoginCountOrderByAggregateInput | No |
| _avg | LoginAvgOrderByAggregateInput | No |
| _max | LoginMaxOrderByAggregateInput | No |
| _min | LoginMinOrderByAggregateInput | No |
| _sum | LoginSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LoginScalarWhereWithAggregatesInput | LoginScalarWhereWithAggregatesInput[] | No |
| OR | LoginScalarWhereWithAggregatesInput[] | No |
| NOT | LoginScalarWhereWithAggregatesInput | LoginScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| username | StringWithAggregatesFilter | String | No |
| password | StringWithAggregatesFilter | String | No |
| failedAttempts | IntWithAggregatesFilter | Int | No |
| lockoutTime | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| lastLogin | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| userId | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AuthenticationTokenWhereInput | AuthenticationTokenWhereInput[] | No |
| OR | AuthenticationTokenWhereInput[] | No |
| NOT | AuthenticationTokenWhereInput | AuthenticationTokenWhereInput[] | No |
| id | IntFilter | Int | No |
| token | StringFilter | String | No |
| expiry | DateTimeNullableFilter | DateTime | Null | Yes |
| userId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| token | SortOrder | No |
| expiry | SortOrder | SortOrderInput | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| token | String | No |
| userId | Int | No |
| AND | AuthenticationTokenWhereInput | AuthenticationTokenWhereInput[] | No |
| OR | AuthenticationTokenWhereInput[] | No |
| NOT | AuthenticationTokenWhereInput | AuthenticationTokenWhereInput[] | No |
| expiry | DateTimeNullableFilter | DateTime | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| token | SortOrder | No |
| expiry | SortOrder | SortOrderInput | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | AuthenticationTokenCountOrderByAggregateInput | No |
| _avg | AuthenticationTokenAvgOrderByAggregateInput | No |
| _max | AuthenticationTokenMaxOrderByAggregateInput | No |
| _min | AuthenticationTokenMinOrderByAggregateInput | No |
| _sum | AuthenticationTokenSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AuthenticationTokenScalarWhereWithAggregatesInput | AuthenticationTokenScalarWhereWithAggregatesInput[] | No |
| OR | AuthenticationTokenScalarWhereWithAggregatesInput[] | No |
| NOT | AuthenticationTokenScalarWhereWithAggregatesInput | AuthenticationTokenScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| token | StringWithAggregatesFilter | String | No |
| expiry | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| userId | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserProfileWhereInput | UserProfileWhereInput[] | No |
| OR | UserProfileWhereInput[] | No |
| NOT | UserProfileWhereInput | UserProfileWhereInput[] | No |
| id | IntFilter | Int | No |
| firstName | StringNullableFilter | String | Null | Yes |
| lastName | StringNullableFilter | String | Null | Yes |
| phone | StringNullableFilter | String | Null | Yes |
| birthDate | DateTimeNullableFilter | DateTime | Null | Yes |
| gender | EnumGenderNullableFilter | Gender | Null | Yes |
| photo | StringNullableFilter | String | Null | Yes |
| bio | StringNullableFilter | String | Null | Yes |
| userId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| userAddress | UserAddressListRelationFilter | No |
| socialLinks | SocialLinkListRelationFilter | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | SortOrderInput | No |
| lastName | SortOrder | SortOrderInput | No |
| phone | SortOrder | SortOrderInput | No |
| birthDate | SortOrder | SortOrderInput | No |
| gender | SortOrder | SortOrderInput | No |
| photo | SortOrder | SortOrderInput | No |
| bio | SortOrder | SortOrderInput | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| userAddress | UserAddressOrderByRelationAggregateInput | No |
| socialLinks | SocialLinkOrderByRelationAggregateInput | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| AND | UserProfileWhereInput | UserProfileWhereInput[] | No |
| OR | UserProfileWhereInput[] | No |
| NOT | UserProfileWhereInput | UserProfileWhereInput[] | No |
| firstName | StringNullableFilter | String | Null | Yes |
| lastName | StringNullableFilter | String | Null | Yes |
| phone | StringNullableFilter | String | Null | Yes |
| birthDate | DateTimeNullableFilter | DateTime | Null | Yes |
| gender | EnumGenderNullableFilter | Gender | Null | Yes |
| photo | StringNullableFilter | String | Null | Yes |
| bio | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| userAddress | UserAddressListRelationFilter | No |
| socialLinks | SocialLinkListRelationFilter | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | SortOrderInput | No |
| lastName | SortOrder | SortOrderInput | No |
| phone | SortOrder | SortOrderInput | No |
| birthDate | SortOrder | SortOrderInput | No |
| gender | SortOrder | SortOrderInput | No |
| photo | SortOrder | SortOrderInput | No |
| bio | SortOrder | SortOrderInput | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | UserProfileCountOrderByAggregateInput | No |
| _avg | UserProfileAvgOrderByAggregateInput | No |
| _max | UserProfileMaxOrderByAggregateInput | No |
| _min | UserProfileMinOrderByAggregateInput | No |
| _sum | UserProfileSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserProfileScalarWhereWithAggregatesInput | UserProfileScalarWhereWithAggregatesInput[] | No |
| OR | UserProfileScalarWhereWithAggregatesInput[] | No |
| NOT | UserProfileScalarWhereWithAggregatesInput | UserProfileScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| firstName | StringNullableWithAggregatesFilter | String | Null | Yes |
| lastName | StringNullableWithAggregatesFilter | String | Null | Yes |
| phone | StringNullableWithAggregatesFilter | String | Null | Yes |
| birthDate | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| gender | EnumGenderNullableWithAggregatesFilter | Gender | Null | Yes |
| photo | StringNullableWithAggregatesFilter | String | Null | Yes |
| bio | StringNullableWithAggregatesFilter | String | Null | Yes |
| userId | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserAddressWhereInput | UserAddressWhereInput[] | No |
| OR | UserAddressWhereInput[] | No |
| NOT | UserAddressWhereInput | UserAddressWhereInput[] | No |
| id | IntFilter | Int | No |
| userProfileId | IntFilter | Int | No |
| addressId | IntFilter | Int | No |
| isDefault | BoolFilter | Boolean | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| userProfile | UserProfileRelationFilter | UserProfileWhereInput | No |
| address | AddressRelationFilter | AddressWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userProfileId | SortOrder | No |
| addressId | SortOrder | No |
| isDefault | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| userProfile | UserProfileOrderByWithRelationInput | No |
| address | AddressOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId_addressId_id | UserAddressUserProfileIdAddressIdIdCompoundUniqueInput | No |
| AND | UserAddressWhereInput | UserAddressWhereInput[] | No |
| OR | UserAddressWhereInput[] | No |
| NOT | UserAddressWhereInput | UserAddressWhereInput[] | No |
| userProfileId | IntFilter | Int | No |
| addressId | IntFilter | Int | No |
| isDefault | BoolFilter | Boolean | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| userProfile | UserProfileRelationFilter | UserProfileWhereInput | No |
| address | AddressRelationFilter | AddressWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userProfileId | SortOrder | No |
| addressId | SortOrder | No |
| isDefault | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | UserAddressCountOrderByAggregateInput | No |
| _avg | UserAddressAvgOrderByAggregateInput | No |
| _max | UserAddressMaxOrderByAggregateInput | No |
| _min | UserAddressMinOrderByAggregateInput | No |
| _sum | UserAddressSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserAddressScalarWhereWithAggregatesInput | UserAddressScalarWhereWithAggregatesInput[] | No |
| OR | UserAddressScalarWhereWithAggregatesInput[] | No |
| NOT | UserAddressScalarWhereWithAggregatesInput | UserAddressScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| userProfileId | IntWithAggregatesFilter | Int | No |
| addressId | IntWithAggregatesFilter | Int | No |
| isDefault | BoolWithAggregatesFilter | Boolean | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AddressWhereInput | AddressWhereInput[] | No |
| OR | AddressWhereInput[] | No |
| NOT | AddressWhereInput | AddressWhereInput[] | No |
| id | IntFilter | Int | No |
| street | StringFilter | String | No |
| unit | StringFilter | String | No |
| city | StringFilter | String | No |
| zipcode | StringFilter | String | No |
| state | StringFilter | String | No |
| country | StringFilter | String | No |
| planet | StringNullableFilter | String | Null | Yes |
| solarSystem | StringNullableFilter | String | Null | Yes |
| galaxy | StringNullableFilter | String | Null | Yes |
| localGroup | StringNullableFilter | String | Null | Yes |
| localCluster | StringNullableFilter | String | Null | Yes |
| universe | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| userAddress | UserAddressListRelationFilter | No |
| paymentDetail | PaymentDetailListRelationFilter | No |
| shippingDetail | ShippingDetailListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| street | SortOrder | No |
| unit | SortOrder | No |
| city | SortOrder | No |
| zipcode | SortOrder | No |
| state | SortOrder | No |
| country | SortOrder | No |
| planet | SortOrder | SortOrderInput | No |
| solarSystem | SortOrder | SortOrderInput | No |
| galaxy | SortOrder | SortOrderInput | No |
| localGroup | SortOrder | SortOrderInput | No |
| localCluster | SortOrder | SortOrderInput | No |
| universe | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| userAddress | UserAddressOrderByRelationAggregateInput | No |
| paymentDetail | PaymentDetailOrderByRelationAggregateInput | No |
| shippingDetail | ShippingDetailOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | AddressWhereInput | AddressWhereInput[] | No |
| OR | AddressWhereInput[] | No |
| NOT | AddressWhereInput | AddressWhereInput[] | No |
| street | StringFilter | String | No |
| unit | StringFilter | String | No |
| city | StringFilter | String | No |
| zipcode | StringFilter | String | No |
| state | StringFilter | String | No |
| country | StringFilter | String | No |
| planet | StringNullableFilter | String | Null | Yes |
| solarSystem | StringNullableFilter | String | Null | Yes |
| galaxy | StringNullableFilter | String | Null | Yes |
| localGroup | StringNullableFilter | String | Null | Yes |
| localCluster | StringNullableFilter | String | Null | Yes |
| universe | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| userAddress | UserAddressListRelationFilter | No |
| paymentDetail | PaymentDetailListRelationFilter | No |
| shippingDetail | ShippingDetailListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| street | SortOrder | No |
| unit | SortOrder | No |
| city | SortOrder | No |
| zipcode | SortOrder | No |
| state | SortOrder | No |
| country | SortOrder | No |
| planet | SortOrder | SortOrderInput | No |
| solarSystem | SortOrder | SortOrderInput | No |
| galaxy | SortOrder | SortOrderInput | No |
| localGroup | SortOrder | SortOrderInput | No |
| localCluster | SortOrder | SortOrderInput | No |
| universe | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | AddressCountOrderByAggregateInput | No |
| _avg | AddressAvgOrderByAggregateInput | No |
| _max | AddressMaxOrderByAggregateInput | No |
| _min | AddressMinOrderByAggregateInput | No |
| _sum | AddressSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SocialLinkWhereInput | SocialLinkWhereInput[] | No |
| OR | SocialLinkWhereInput[] | No |
| NOT | SocialLinkWhereInput | SocialLinkWhereInput[] | No |
| id | IntFilter | Int | No |
| userProfileId | IntFilter | Int | No |
| socialProvider | StringFilter | String | No |
| socialUrl | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| UserProfile | UserProfileRelationFilter | UserProfileWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userProfileId | SortOrder | No |
| socialProvider | SortOrder | No |
| socialUrl | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| UserProfile | UserProfileOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId | Int | No |
| AND | SocialLinkWhereInput | SocialLinkWhereInput[] | No |
| OR | SocialLinkWhereInput[] | No |
| NOT | SocialLinkWhereInput | SocialLinkWhereInput[] | No |
| socialProvider | StringFilter | String | No |
| socialUrl | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| UserProfile | UserProfileRelationFilter | UserProfileWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userProfileId | SortOrder | No |
| socialProvider | SortOrder | No |
| socialUrl | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | SocialLinkCountOrderByAggregateInput | No |
| _avg | SocialLinkAvgOrderByAggregateInput | No |
| _max | SocialLinkMaxOrderByAggregateInput | No |
| _min | SocialLinkMinOrderByAggregateInput | No |
| _sum | SocialLinkSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SocialLinkScalarWhereWithAggregatesInput | SocialLinkScalarWhereWithAggregatesInput[] | No |
| OR | SocialLinkScalarWhereWithAggregatesInput[] | No |
| NOT | SocialLinkScalarWhereWithAggregatesInput | SocialLinkScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| userProfileId | IntWithAggregatesFilter | Int | No |
| socialProvider | StringWithAggregatesFilter | String | No |
| socialUrl | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserReviewWhereInput | UserReviewWhereInput[] | No |
| OR | UserReviewWhereInput[] | No |
| NOT | UserReviewWhereInput | UserReviewWhereInput[] | No |
| id | IntFilter | Int | No |
| title | StringFilter | String | No |
| message | StringFilter | String | No |
| rating | IntFilter | Int | No |
| authorId | IntFilter | Int | No |
| productId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| author | UserRelationFilter | UserWhereInput | No |
| product | ProductRelationFilter | ProductWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| message | SortOrder | No |
| rating | SortOrder | No |
| authorId | SortOrder | No |
| productId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| author | UserOrderByWithRelationInput | No |
| product | ProductOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | UserReviewWhereInput | UserReviewWhereInput[] | No |
| OR | UserReviewWhereInput[] | No |
| NOT | UserReviewWhereInput | UserReviewWhereInput[] | No |
| title | StringFilter | String | No |
| message | StringFilter | String | No |
| rating | IntFilter | Int | No |
| authorId | IntFilter | Int | No |
| productId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| author | UserRelationFilter | UserWhereInput | No |
| product | ProductRelationFilter | ProductWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| message | SortOrder | No |
| rating | SortOrder | No |
| authorId | SortOrder | No |
| productId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | UserReviewCountOrderByAggregateInput | No |
| _avg | UserReviewAvgOrderByAggregateInput | No |
| _max | UserReviewMaxOrderByAggregateInput | No |
| _min | UserReviewMinOrderByAggregateInput | No |
| _sum | UserReviewSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserReviewScalarWhereWithAggregatesInput | UserReviewScalarWhereWithAggregatesInput[] | No |
| OR | UserReviewScalarWhereWithAggregatesInput[] | No |
| NOT | UserReviewScalarWhereWithAggregatesInput | UserReviewScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| title | StringWithAggregatesFilter | String | No |
| message | StringWithAggregatesFilter | String | No |
| rating | IntWithAggregatesFilter | Int | No |
| authorId | IntWithAggregatesFilter | Int | No |
| productId | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PromotionCategoryWhereInput | PromotionCategoryWhereInput[] | No |
| OR | PromotionCategoryWhereInput[] | No |
| NOT | PromotionCategoryWhereInput | PromotionCategoryWhereInput[] | No |
| id | IntFilter | Int | No |
| categoryId | IntFilter | Int | No |
| promotionId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| promotion | PromotionRelationFilter | PromotionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| promotionId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| category | CategoryOrderByWithRelationInput | No |
| promotion | PromotionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryId_promotionId | PromotionCategoryCategoryIdPromotionIdCompoundUniqueInput | No |
| AND | PromotionCategoryWhereInput | PromotionCategoryWhereInput[] | No |
| OR | PromotionCategoryWhereInput[] | No |
| NOT | PromotionCategoryWhereInput | PromotionCategoryWhereInput[] | No |
| categoryId | IntFilter | Int | No |
| promotionId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| promotion | PromotionRelationFilter | PromotionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| promotionId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | PromotionCategoryCountOrderByAggregateInput | No |
| _avg | PromotionCategoryAvgOrderByAggregateInput | No |
| _max | PromotionCategoryMaxOrderByAggregateInput | No |
| _min | PromotionCategoryMinOrderByAggregateInput | No |
| _sum | PromotionCategorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PromotionCategoryScalarWhereWithAggregatesInput | PromotionCategoryScalarWhereWithAggregatesInput[] | No |
| OR | PromotionCategoryScalarWhereWithAggregatesInput[] | No |
| NOT | PromotionCategoryScalarWhereWithAggregatesInput | PromotionCategoryScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| categoryId | IntWithAggregatesFilter | Int | No |
| promotionId | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PromotionWhereInput | PromotionWhereInput[] | No |
| OR | PromotionWhereInput[] | No |
| NOT | PromotionWhereInput | PromotionWhereInput[] | No |
| id | IntFilter | Int | No |
| promotionName | StringFilter | String | No |
| promotionDesc | StringFilter | String | No |
| promotionRate | IntFilter | Int | No |
| isActive | BoolFilter | Boolean | No |
| startDate | DateTimeFilter | DateTime | No |
| endDate | DateTimeFilter | DateTime | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| promotionCategory | PromotionCategoryListRelationFilter | No |
| CartItem | CartItemNullableRelationFilter | CartItemWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| promotionName | SortOrder | No |
| promotionDesc | SortOrder | No |
| promotionRate | SortOrder | No |
| isActive | SortOrder | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| promotionCategory | PromotionCategoryOrderByRelationAggregateInput | No |
| CartItem | CartItemOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | PromotionWhereInput | PromotionWhereInput[] | No |
| OR | PromotionWhereInput[] | No |
| NOT | PromotionWhereInput | PromotionWhereInput[] | No |
| promotionName | StringFilter | String | No |
| promotionDesc | StringFilter | String | No |
| promotionRate | IntFilter | Int | No |
| isActive | BoolFilter | Boolean | No |
| startDate | DateTimeFilter | DateTime | No |
| endDate | DateTimeFilter | DateTime | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| promotionCategory | PromotionCategoryListRelationFilter | No |
| CartItem | CartItemNullableRelationFilter | CartItemWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| promotionName | SortOrder | No |
| promotionDesc | SortOrder | No |
| promotionRate | SortOrder | No |
| isActive | SortOrder | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | PromotionCountOrderByAggregateInput | No |
| _avg | PromotionAvgOrderByAggregateInput | No |
| _max | PromotionMaxOrderByAggregateInput | No |
| _min | PromotionMinOrderByAggregateInput | No |
| _sum | PromotionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PromotionScalarWhereWithAggregatesInput | PromotionScalarWhereWithAggregatesInput[] | No |
| OR | PromotionScalarWhereWithAggregatesInput[] | No |
| NOT | PromotionScalarWhereWithAggregatesInput | PromotionScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| promotionName | StringWithAggregatesFilter | String | No |
| promotionDesc | StringWithAggregatesFilter | String | No |
| promotionRate | IntWithAggregatesFilter | Int | No |
| isActive | BoolWithAggregatesFilter | Boolean | No |
| startDate | DateTimeWithAggregatesFilter | DateTime | No |
| endDate | DateTimeWithAggregatesFilter | DateTime | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CartItemWhereInput | CartItemWhereInput[] | No |
| OR | CartItemWhereInput[] | No |
| NOT | CartItemWhereInput | CartItemWhereInput[] | No |
| id | IntFilter | Int | No |
| cartId | IntFilter | Int | No |
| productId | IntFilter | Int | No |
| quantity | IntFilter | Int | No |
| promotionId | IntNullableFilter | Int | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| cart | CartRelationFilter | CartWhereInput | No |
| product | ProductRelationFilter | ProductWhereInput | No |
| Promotion | PromotionNullableRelationFilter | PromotionWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| cartId | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| promotionId | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| cart | CartOrderByWithRelationInput | No |
| product | ProductOrderByWithRelationInput | No |
| Promotion | PromotionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| promotionId | Int | No |
| AND | CartItemWhereInput | CartItemWhereInput[] | No |
| OR | CartItemWhereInput[] | No |
| NOT | CartItemWhereInput | CartItemWhereInput[] | No |
| cartId | IntFilter | Int | No |
| productId | IntFilter | Int | No |
| quantity | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| cart | CartRelationFilter | CartWhereInput | No |
| product | ProductRelationFilter | ProductWhereInput | No |
| Promotion | PromotionNullableRelationFilter | PromotionWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| cartId | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| promotionId | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | CartItemCountOrderByAggregateInput | No |
| _avg | CartItemAvgOrderByAggregateInput | No |
| _max | CartItemMaxOrderByAggregateInput | No |
| _min | CartItemMinOrderByAggregateInput | No |
| _sum | CartItemSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CartItemScalarWhereWithAggregatesInput | CartItemScalarWhereWithAggregatesInput[] | No |
| OR | CartItemScalarWhereWithAggregatesInput[] | No |
| NOT | CartItemScalarWhereWithAggregatesInput | CartItemScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| cartId | IntWithAggregatesFilter | Int | No |
| productId | IntWithAggregatesFilter | Int | No |
| quantity | IntWithAggregatesFilter | Int | No |
| promotionId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CartWhereInput | CartWhereInput[] | No |
| OR | CartWhereInput[] | No |
| NOT | CartWhereInput | CartWhereInput[] | No |
| id | IntFilter | Int | No |
| userId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| cartItems | CartItemListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| cartItems | CartItemOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| AND | CartWhereInput | CartWhereInput[] | No |
| OR | CartWhereInput[] | No |
| NOT | CartWhereInput | CartWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| cartItems | CartItemListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | CartCountOrderByAggregateInput | No |
| _avg | CartAvgOrderByAggregateInput | No |
| _max | CartMaxOrderByAggregateInput | No |
| _min | CartMinOrderByAggregateInput | No |
| _sum | CartSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CartScalarWhereWithAggregatesInput | CartScalarWhereWithAggregatesInput[] | No |
| OR | CartScalarWhereWithAggregatesInput[] | No |
| NOT | CartScalarWhereWithAggregatesInput | CartScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| userId | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderWhereInput | OrderWhereInput[] | No |
| OR | OrderWhereInput[] | No |
| NOT | OrderWhereInput | OrderWhereInput[] | No |
| id | StringFilter | String | No |
| status | EnumOrderStatusTypeFilter | OrderStatusType | No |
| tax | DecimalFilter | Decimal | No |
| total | DecimalFilter | Decimal | No |
| createdAt | DateTimeFilter | DateTime | No |
| userId | IntFilter | Int | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| shippingDetail | ShippingDetailNullableRelationFilter | ShippingDetailWhereInput | Null | Yes |
| paymentDetail | PaymentDetailNullableRelationFilter | PaymentDetailWhereInput | Null | Yes |
| orderDetail | OrderDetailListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| status | SortOrder | No |
| tax | SortOrder | No |
| total | SortOrder | No |
| createdAt | SortOrder | No |
| userId | SortOrder | No |
| updatedAt | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| shippingDetail | ShippingDetailOrderByWithRelationInput | No |
| paymentDetail | PaymentDetailOrderByWithRelationInput | No |
| orderDetail | OrderDetailOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | OrderWhereInput | OrderWhereInput[] | No |
| OR | OrderWhereInput[] | No |
| NOT | OrderWhereInput | OrderWhereInput[] | No |
| status | EnumOrderStatusTypeFilter | OrderStatusType | No |
| tax | DecimalFilter | Decimal | No |
| total | DecimalFilter | Decimal | No |
| createdAt | DateTimeFilter | DateTime | No |
| userId | IntFilter | Int | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| shippingDetail | ShippingDetailNullableRelationFilter | ShippingDetailWhereInput | Null | Yes |
| paymentDetail | PaymentDetailNullableRelationFilter | PaymentDetailWhereInput | Null | Yes |
| orderDetail | OrderDetailListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| status | SortOrder | No |
| tax | SortOrder | No |
| total | SortOrder | No |
| createdAt | SortOrder | No |
| userId | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | OrderCountOrderByAggregateInput | No |
| _avg | OrderAvgOrderByAggregateInput | No |
| _max | OrderMaxOrderByAggregateInput | No |
| _min | OrderMinOrderByAggregateInput | No |
| _sum | OrderSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderScalarWhereWithAggregatesInput | OrderScalarWhereWithAggregatesInput[] | No |
| OR | OrderScalarWhereWithAggregatesInput[] | No |
| NOT | OrderScalarWhereWithAggregatesInput | OrderScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| status | EnumOrderStatusTypeWithAggregatesFilter | OrderStatusType | No |
| tax | DecimalWithAggregatesFilter | Decimal | No |
| total | DecimalWithAggregatesFilter | Decimal | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| userId | IntWithAggregatesFilter | Int | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderDetailWhereInput | OrderDetailWhereInput[] | No |
| OR | OrderDetailWhereInput[] | No |
| NOT | OrderDetailWhereInput | OrderDetailWhereInput[] | No |
| id | IntFilter | Int | No |
| orderId | StringFilter | String | No |
| productId | IntFilter | Int | No |
| quantity | IntFilter | Int | No |
| total | DecimalFilter | Decimal | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| product | ProductRelationFilter | ProductWhereInput | No |
| order | OrderRelationFilter | OrderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| orderId | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| total | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| product | ProductOrderByWithRelationInput | No |
| order | OrderOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | OrderDetailWhereInput | OrderDetailWhereInput[] | No |
| OR | OrderDetailWhereInput[] | No |
| NOT | OrderDetailWhereInput | OrderDetailWhereInput[] | No |
| orderId | StringFilter | String | No |
| productId | IntFilter | Int | No |
| quantity | IntFilter | Int | No |
| total | DecimalFilter | Decimal | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| product | ProductRelationFilter | ProductWhereInput | No |
| order | OrderRelationFilter | OrderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| orderId | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| total | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | OrderDetailCountOrderByAggregateInput | No |
| _avg | OrderDetailAvgOrderByAggregateInput | No |
| _max | OrderDetailMaxOrderByAggregateInput | No |
| _min | OrderDetailMinOrderByAggregateInput | No |
| _sum | OrderDetailSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderDetailScalarWhereWithAggregatesInput | OrderDetailScalarWhereWithAggregatesInput[] | No |
| OR | OrderDetailScalarWhereWithAggregatesInput[] | No |
| NOT | OrderDetailScalarWhereWithAggregatesInput | OrderDetailScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| orderId | StringWithAggregatesFilter | String | No |
| productId | IntWithAggregatesFilter | Int | No |
| quantity | IntWithAggregatesFilter | Int | No |
| total | DecimalWithAggregatesFilter | Decimal | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PaymentDetailWhereInput | PaymentDetailWhereInput[] | No |
| OR | PaymentDetailWhereInput[] | No |
| NOT | PaymentDetailWhereInput | PaymentDetailWhereInput[] | No |
| id | IntFilter | Int | No |
| billingAddressId | IntFilter | Int | No |
| orderId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| paymentMethod | PaymentMethodListRelationFilter | No |
| billingAddress | AddressRelationFilter | AddressWhereInput | No |
| order | OrderRelationFilter | OrderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| billingAddressId | SortOrder | No |
| orderId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| paymentMethod | PaymentMethodOrderByRelationAggregateInput | No |
| billingAddress | AddressOrderByWithRelationInput | No |
| order | OrderOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| orderId | String | No |
| AND | PaymentDetailWhereInput | PaymentDetailWhereInput[] | No |
| OR | PaymentDetailWhereInput[] | No |
| NOT | PaymentDetailWhereInput | PaymentDetailWhereInput[] | No |
| billingAddressId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| paymentMethod | PaymentMethodListRelationFilter | No |
| billingAddress | AddressRelationFilter | AddressWhereInput | No |
| order | OrderRelationFilter | OrderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| billingAddressId | SortOrder | No |
| orderId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | PaymentDetailCountOrderByAggregateInput | No |
| _avg | PaymentDetailAvgOrderByAggregateInput | No |
| _max | PaymentDetailMaxOrderByAggregateInput | No |
| _min | PaymentDetailMinOrderByAggregateInput | No |
| _sum | PaymentDetailSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PaymentDetailScalarWhereWithAggregatesInput | PaymentDetailScalarWhereWithAggregatesInput[] | No |
| OR | PaymentDetailScalarWhereWithAggregatesInput[] | No |
| NOT | PaymentDetailScalarWhereWithAggregatesInput | PaymentDetailScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| billingAddressId | IntWithAggregatesFilter | Int | No |
| orderId | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PaymentOptionWhereInput | PaymentOptionWhereInput[] | No |
| OR | PaymentOptionWhereInput[] | No |
| NOT | PaymentOptionWhereInput | PaymentOptionWhereInput[] | No |
| id | IntFilter | Int | No |
| paymentType | EnumPaymentTypeFilter | PaymentType | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| paymentMethod | PaymentMethodListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| paymentType | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| paymentMethod | PaymentMethodOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | PaymentOptionWhereInput | PaymentOptionWhereInput[] | No |
| OR | PaymentOptionWhereInput[] | No |
| NOT | PaymentOptionWhereInput | PaymentOptionWhereInput[] | No |
| paymentType | EnumPaymentTypeFilter | PaymentType | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| paymentMethod | PaymentMethodListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| paymentType | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | PaymentOptionCountOrderByAggregateInput | No |
| _avg | PaymentOptionAvgOrderByAggregateInput | No |
| _max | PaymentOptionMaxOrderByAggregateInput | No |
| _min | PaymentOptionMinOrderByAggregateInput | No |
| _sum | PaymentOptionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PaymentOptionScalarWhereWithAggregatesInput | PaymentOptionScalarWhereWithAggregatesInput[] | No |
| OR | PaymentOptionScalarWhereWithAggregatesInput[] | No |
| NOT | PaymentOptionScalarWhereWithAggregatesInput | PaymentOptionScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| paymentType | EnumPaymentTypeWithAggregatesFilter | PaymentType | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PaymentMethodWhereInput | PaymentMethodWhereInput[] | No |
| OR | PaymentMethodWhereInput[] | No |
| NOT | PaymentMethodWhereInput | PaymentMethodWhereInput[] | No |
| id | IntFilter | Int | No |
| userId | IntFilter | Int | No |
| paymentDetailId | IntFilter | Int | No |
| paymentOptionId | IntFilter | Int | No |
| cardProvider | StringNullableFilter | String | Null | Yes |
| nameOnCard | StringNullableFilter | String | Null | Yes |
| isDefault | BoolFilter | Boolean | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| paymentDetail | PaymentDetailRelationFilter | PaymentDetailWhereInput | No |
| paymentOption | PaymentOptionRelationFilter | PaymentOptionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| paymentDetailId | SortOrder | No |
| paymentOptionId | SortOrder | No |
| cardProvider | SortOrder | SortOrderInput | No |
| nameOnCard | SortOrder | SortOrderInput | No |
| isDefault | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| paymentDetail | PaymentDetailOrderByWithRelationInput | No |
| paymentOption | PaymentOptionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | PaymentMethodWhereInput | PaymentMethodWhereInput[] | No |
| OR | PaymentMethodWhereInput[] | No |
| NOT | PaymentMethodWhereInput | PaymentMethodWhereInput[] | No |
| userId | IntFilter | Int | No |
| paymentDetailId | IntFilter | Int | No |
| paymentOptionId | IntFilter | Int | No |
| cardProvider | StringNullableFilter | String | Null | Yes |
| nameOnCard | StringNullableFilter | String | Null | Yes |
| isDefault | BoolFilter | Boolean | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| paymentDetail | PaymentDetailRelationFilter | PaymentDetailWhereInput | No |
| paymentOption | PaymentOptionRelationFilter | PaymentOptionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| paymentDetailId | SortOrder | No |
| paymentOptionId | SortOrder | No |
| cardProvider | SortOrder | SortOrderInput | No |
| nameOnCard | SortOrder | SortOrderInput | No |
| isDefault | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | PaymentMethodCountOrderByAggregateInput | No |
| _avg | PaymentMethodAvgOrderByAggregateInput | No |
| _max | PaymentMethodMaxOrderByAggregateInput | No |
| _min | PaymentMethodMinOrderByAggregateInput | No |
| _sum | PaymentMethodSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PaymentMethodScalarWhereWithAggregatesInput | PaymentMethodScalarWhereWithAggregatesInput[] | No |
| OR | PaymentMethodScalarWhereWithAggregatesInput[] | No |
| NOT | PaymentMethodScalarWhereWithAggregatesInput | PaymentMethodScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| userId | IntWithAggregatesFilter | Int | No |
| paymentDetailId | IntWithAggregatesFilter | Int | No |
| paymentOptionId | IntWithAggregatesFilter | Int | No |
| cardProvider | StringNullableWithAggregatesFilter | String | Null | Yes |
| nameOnCard | StringNullableWithAggregatesFilter | String | Null | Yes |
| isDefault | BoolWithAggregatesFilter | Boolean | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ShippingDetailWhereInput | ShippingDetailWhereInput[] | No |
| OR | ShippingDetailWhereInput[] | No |
| NOT | ShippingDetailWhereInput | ShippingDetailWhereInput[] | No |
| id | IntFilter | Int | No |
| estimatedArrival | DateTimeFilter | DateTime | No |
| shippingAddressId | IntFilter | Int | No |
| shippingMethodId | IntFilter | Int | No |
| orderId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| shippingAddress | AddressRelationFilter | AddressWhereInput | No |
| shippingMethod | ShippingMethodRelationFilter | ShippingMethodWhereInput | No |
| order | OrderRelationFilter | OrderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| estimatedArrival | SortOrder | No |
| shippingAddressId | SortOrder | No |
| shippingMethodId | SortOrder | No |
| orderId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| shippingAddress | AddressOrderByWithRelationInput | No |
| shippingMethod | ShippingMethodOrderByWithRelationInput | No |
| order | OrderOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| orderId | String | No |
| AND | ShippingDetailWhereInput | ShippingDetailWhereInput[] | No |
| OR | ShippingDetailWhereInput[] | No |
| NOT | ShippingDetailWhereInput | ShippingDetailWhereInput[] | No |
| estimatedArrival | DateTimeFilter | DateTime | No |
| shippingAddressId | IntFilter | Int | No |
| shippingMethodId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| shippingAddress | AddressRelationFilter | AddressWhereInput | No |
| shippingMethod | ShippingMethodRelationFilter | ShippingMethodWhereInput | No |
| order | OrderRelationFilter | OrderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| estimatedArrival | SortOrder | No |
| shippingAddressId | SortOrder | No |
| shippingMethodId | SortOrder | No |
| orderId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | ShippingDetailCountOrderByAggregateInput | No |
| _avg | ShippingDetailAvgOrderByAggregateInput | No |
| _max | ShippingDetailMaxOrderByAggregateInput | No |
| _min | ShippingDetailMinOrderByAggregateInput | No |
| _sum | ShippingDetailSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ShippingDetailScalarWhereWithAggregatesInput | ShippingDetailScalarWhereWithAggregatesInput[] | No |
| OR | ShippingDetailScalarWhereWithAggregatesInput[] | No |
| NOT | ShippingDetailScalarWhereWithAggregatesInput | ShippingDetailScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| estimatedArrival | DateTimeWithAggregatesFilter | DateTime | No |
| shippingAddressId | IntWithAggregatesFilter | Int | No |
| shippingMethodId | IntWithAggregatesFilter | Int | No |
| orderId | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ShippingMethodWhereInput | ShippingMethodWhereInput[] | No |
| OR | ShippingMethodWhereInput[] | No |
| NOT | ShippingMethodWhereInput | ShippingMethodWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| price | DecimalFilter | Decimal | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| shippingDetail | ShippingDetailListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| price | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| shippingDetail | ShippingDetailOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | ShippingMethodWhereInput | ShippingMethodWhereInput[] | No |
| OR | ShippingMethodWhereInput[] | No |
| NOT | ShippingMethodWhereInput | ShippingMethodWhereInput[] | No |
| name | StringFilter | String | No |
| price | DecimalFilter | Decimal | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| shippingDetail | ShippingDetailListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| price | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | ShippingMethodCountOrderByAggregateInput | No |
| _avg | ShippingMethodAvgOrderByAggregateInput | No |
| _max | ShippingMethodMaxOrderByAggregateInput | No |
| _min | ShippingMethodMinOrderByAggregateInput | No |
| _sum | ShippingMethodSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ShippingMethodScalarWhereWithAggregatesInput | ShippingMethodScalarWhereWithAggregatesInput[] | No |
| OR | ShippingMethodScalarWhereWithAggregatesInput[] | No |
| NOT | ShippingMethodScalarWhereWithAggregatesInput | ShippingMethodScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| name | StringWithAggregatesFilter | String | No |
| price | DecimalWithAggregatesFilter | Decimal | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | InvoiceWhereInput | InvoiceWhereInput[] | No |
| OR | InvoiceWhereInput[] | No |
| NOT | InvoiceWhereInput | InvoiceWhereInput[] | No |
| id | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | InvoiceWhereInput | InvoiceWhereInput[] | No |
| OR | InvoiceWhereInput[] | No |
| NOT | InvoiceWhereInput | InvoiceWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| _count | InvoiceCountOrderByAggregateInput | No |
| _max | InvoiceMaxOrderByAggregateInput | No |
| _min | InvoiceMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | InvoiceScalarWhereWithAggregatesInput | InvoiceScalarWhereWithAggregatesInput[] | No |
| OR | InvoiceScalarWhereWithAggregatesInput[] | No |
| NOT | InvoiceScalarWhereWithAggregatesInput | InvoiceScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserRoleWhereInput | UserRoleWhereInput[] | No |
| OR | UserRoleWhereInput[] | No |
| NOT | UserRoleWhereInput | UserRoleWhereInput[] | No |
| id | IntFilter | Int | No |
| userId | IntFilter | Int | No |
| roleId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| role | RoleRelationFilter | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| roleId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| role | RoleOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId_roleId | UserRoleUserIdRoleIdCompoundUniqueInput | No |
| AND | UserRoleWhereInput | UserRoleWhereInput[] | No |
| OR | UserRoleWhereInput[] | No |
| NOT | UserRoleWhereInput | UserRoleWhereInput[] | No |
| userId | IntFilter | Int | No |
| roleId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| role | RoleRelationFilter | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| roleId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | UserRoleCountOrderByAggregateInput | No |
| _avg | UserRoleAvgOrderByAggregateInput | No |
| _max | UserRoleMaxOrderByAggregateInput | No |
| _min | UserRoleMinOrderByAggregateInput | No |
| _sum | UserRoleSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserRoleScalarWhereWithAggregatesInput | UserRoleScalarWhereWithAggregatesInput[] | No |
| OR | UserRoleScalarWhereWithAggregatesInput[] | No |
| NOT | UserRoleScalarWhereWithAggregatesInput | UserRoleScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| userId | IntWithAggregatesFilter | Int | No |
| roleId | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RoleWhereInput | RoleWhereInput[] | No |
| OR | RoleWhereInput[] | No |
| NOT | RoleWhereInput | RoleWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| users | UserRoleListRelationFilter | No |
| permissions | RolePermissionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| users | UserRoleOrderByRelationAggregateInput | No |
| permissions | RolePermissionOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| AND | RoleWhereInput | RoleWhereInput[] | No |
| OR | RoleWhereInput[] | No |
| NOT | RoleWhereInput | RoleWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| users | UserRoleListRelationFilter | No |
| permissions | RolePermissionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | RoleCountOrderByAggregateInput | No |
| _avg | RoleAvgOrderByAggregateInput | No |
| _max | RoleMaxOrderByAggregateInput | No |
| _min | RoleMinOrderByAggregateInput | No |
| _sum | RoleSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RoleScalarWhereWithAggregatesInput | RoleScalarWhereWithAggregatesInput[] | No |
| OR | RoleScalarWhereWithAggregatesInput[] | No |
| NOT | RoleScalarWhereWithAggregatesInput | RoleScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| name | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RolePermissionWhereInput | RolePermissionWhereInput[] | No |
| OR | RolePermissionWhereInput[] | No |
| NOT | RolePermissionWhereInput | RolePermissionWhereInput[] | No |
| id | IntFilter | Int | No |
| roleId | IntFilter | Int | No |
| permissionId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| role | RoleRelationFilter | RoleWhereInput | No |
| permission | PermissionRelationFilter | PermissionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| roleId | SortOrder | No |
| permissionId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| role | RoleOrderByWithRelationInput | No |
| permission | PermissionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| roleId_permissionId | RolePermissionRoleIdPermissionIdCompoundUniqueInput | No |
| AND | RolePermissionWhereInput | RolePermissionWhereInput[] | No |
| OR | RolePermissionWhereInput[] | No |
| NOT | RolePermissionWhereInput | RolePermissionWhereInput[] | No |
| roleId | IntFilter | Int | No |
| permissionId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| role | RoleRelationFilter | RoleWhereInput | No |
| permission | PermissionRelationFilter | PermissionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| roleId | SortOrder | No |
| permissionId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | RolePermissionCountOrderByAggregateInput | No |
| _avg | RolePermissionAvgOrderByAggregateInput | No |
| _max | RolePermissionMaxOrderByAggregateInput | No |
| _min | RolePermissionMinOrderByAggregateInput | No |
| _sum | RolePermissionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RolePermissionScalarWhereWithAggregatesInput | RolePermissionScalarWhereWithAggregatesInput[] | No |
| OR | RolePermissionScalarWhereWithAggregatesInput[] | No |
| NOT | RolePermissionScalarWhereWithAggregatesInput | RolePermissionScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| roleId | IntWithAggregatesFilter | Int | No |
| permissionId | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PermissionWhereInput | PermissionWhereInput[] | No |
| OR | PermissionWhereInput[] | No |
| NOT | PermissionWhereInput | PermissionWhereInput[] | No |
| id | IntFilter | Int | No |
| resource | StringFilter | String | No |
| accessType | EnumAccessTypeFilter | AccessType | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| roles | RolePermissionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource | SortOrder | No |
| accessType | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| roles | RolePermissionOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | PermissionWhereInput | PermissionWhereInput[] | No |
| OR | PermissionWhereInput[] | No |
| NOT | PermissionWhereInput | PermissionWhereInput[] | No |
| resource | StringFilter | String | No |
| accessType | EnumAccessTypeFilter | AccessType | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| roles | RolePermissionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource | SortOrder | No |
| accessType | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | PermissionCountOrderByAggregateInput | No |
| _avg | PermissionAvgOrderByAggregateInput | No |
| _max | PermissionMaxOrderByAggregateInput | No |
| _min | PermissionMinOrderByAggregateInput | No |
| _sum | PermissionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PermissionScalarWhereWithAggregatesInput | PermissionScalarWhereWithAggregatesInput[] | No |
| OR | PermissionScalarWhereWithAggregatesInput[] | No |
| NOT | PermissionScalarWhereWithAggregatesInput | PermissionScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| resource | StringWithAggregatesFilter | String | No |
| accessType | EnumAccessTypeWithAggregatesFilter | AccessType | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| category | CategoryCreateNestedOneWithoutProductInput | No |
| orderDetail | OrderDetailCreateNestedManyWithoutProductInput | No |
| cartItem | CartItemCreateNestedManyWithoutProductInput | No |
| productInventory | ProductInventoryCreateNestedManyWithoutProductInput | No |
| productImage | ProductImageCreateNestedManyWithoutProductInput | No |
| reviews | UserReviewCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| categoryId | Int | No |
| orderDetail | OrderDetailUncheckedCreateNestedManyWithoutProductInput | No |
| cartItem | CartItemUncheckedCreateNestedManyWithoutProductInput | No |
| productInventory | ProductInventoryUncheckedCreateNestedManyWithoutProductInput | No |
| productImage | ProductImageUncheckedCreateNestedManyWithoutProductInput | No |
| reviews | UserReviewUncheckedCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| categoryId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| parentCategory | CategoryCreateNestedOneWithoutChildCategoriesInput | No |
| childCategories | CategoryCreateNestedManyWithoutParentCategoryInput | No |
| product | ProductCreateNestedManyWithoutCategoryInput | No |
| promotionCategory | PromotionCategoryCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| parentCategoryId | Int | Null | Yes |
| childCategories | CategoryUncheckedCreateNestedManyWithoutParentCategoryInput | No |
| product | ProductUncheckedCreateNestedManyWithoutCategoryInput | No |
| promotionCategory | PromotionCategoryUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| categoryName | String | StringFieldUpdateOperationsInput | No |
| categoryDesc | String | StringFieldUpdateOperationsInput | No |
| slug | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentCategory | CategoryUpdateOneWithoutChildCategoriesNestedInput | No |
| childCategories | CategoryUpdateManyWithoutParentCategoryNestedInput | No |
| product | ProductUpdateManyWithoutCategoryNestedInput | No |
| promotionCategory | PromotionCategoryUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| categoryName | String | StringFieldUpdateOperationsInput | No |
| categoryDesc | String | StringFieldUpdateOperationsInput | No |
| slug | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentCategoryId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| childCategories | CategoryUncheckedUpdateManyWithoutParentCategoryNestedInput | No |
| product | ProductUncheckedUpdateManyWithoutCategoryNestedInput | No |
| promotionCategory | PromotionCategoryUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| parentCategoryId | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| categoryName | String | StringFieldUpdateOperationsInput | No |
| categoryDesc | String | StringFieldUpdateOperationsInput | No |
| slug | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| categoryName | String | StringFieldUpdateOperationsInput | No |
| categoryDesc | String | StringFieldUpdateOperationsInput | No |
| slug | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentCategoryId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | No |
| reStockLevel | Int | Null | Yes |
| status | InventoryStatus | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| product | ProductCreateNestedOneWithoutProductInventoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| quantity | Int | No |
| reStockLevel | Int | Null | Yes |
| status | InventoryStatus | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| productId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | IntFieldUpdateOperationsInput | No |
| reStockLevel | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| status | InventoryStatus | EnumInventoryStatusFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| product | ProductUpdateOneRequiredWithoutProductInventoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| reStockLevel | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| status | InventoryStatus | EnumInventoryStatusFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| quantity | Int | No |
| reStockLevel | Int | Null | Yes |
| status | InventoryStatus | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| productId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | IntFieldUpdateOperationsInput | No |
| reStockLevel | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| status | InventoryStatus | EnumInventoryStatusFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| reStockLevel | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| status | InventoryStatus | EnumInventoryStatusFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| imageUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| product | ProductCreateNestedOneWithoutProductImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| imageUrl | String | No |
| productId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| imageUrl | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| product | ProductUpdateOneRequiredWithoutProductImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| imageUrl | String | StringFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| imageUrl | String | No |
| productId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| imageUrl | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| imageUrl | String | StringFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenCreateNestedOneWithoutUserInput | No |
| profile | UserProfileCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewCreateNestedManyWithoutAuthorInput | No |
| cart | CartCreateNestedOneWithoutUserInput | No |
| login | LoginCreateNestedOneWithoutUserInput | No |
| roles | UserRoleCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodCreateNestedManyWithoutUserInput | No |
| orders | OrderCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenUncheckedCreateNestedOneWithoutUserInput | No |
| profile | UserProfileUncheckedCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewUncheckedCreateNestedManyWithoutAuthorInput | No |
| cart | CartUncheckedCreateNestedOneWithoutUserInput | No |
| login | LoginUncheckedCreateNestedOneWithoutUserInput | No |
| roles | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodUncheckedCreateNestedManyWithoutUserInput | No |
| orders | OrderUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUpdateOneWithoutUserNestedInput | No |
| login | LoginUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUpdateManyWithoutUserNestedInput | No |
| orders | OrderUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUncheckedUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUncheckedUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUncheckedUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUncheckedUpdateOneWithoutUserNestedInput | No |
| login | LoginUncheckedUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUncheckedUpdateManyWithoutUserNestedInput | No |
| orders | OrderUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| Name | Type | Nullable |
|---|---|---|
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| username | String | No |
| password | String | No |
| failedAttempts | Int | No |
| lockoutTime | DateTime | Null | Yes |
| lastLogin | DateTime | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutLoginInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| username | String | No |
| password | String | No |
| failedAttempts | Int | No |
| lockoutTime | DateTime | Null | Yes |
| lastLogin | DateTime | Null | Yes |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| username | String | StringFieldUpdateOperationsInput | No |
| password | String | StringFieldUpdateOperationsInput | No |
| failedAttempts | Int | IntFieldUpdateOperationsInput | No |
| lockoutTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastLogin | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutLoginNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| username | String | StringFieldUpdateOperationsInput | No |
| password | String | StringFieldUpdateOperationsInput | No |
| failedAttempts | Int | IntFieldUpdateOperationsInput | No |
| lockoutTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastLogin | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| userId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| username | String | No |
| password | String | No |
| failedAttempts | Int | No |
| lockoutTime | DateTime | Null | Yes |
| lastLogin | DateTime | Null | Yes |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| username | String | StringFieldUpdateOperationsInput | No |
| password | String | StringFieldUpdateOperationsInput | No |
| failedAttempts | Int | IntFieldUpdateOperationsInput | No |
| lockoutTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastLogin | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| username | String | StringFieldUpdateOperationsInput | No |
| password | String | StringFieldUpdateOperationsInput | No |
| failedAttempts | Int | IntFieldUpdateOperationsInput | No |
| lockoutTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastLogin | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| userId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| token | String | No |
| expiry | DateTime | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutAuthenticationTokenInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| token | String | No |
| expiry | DateTime | Null | Yes |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| token | String | StringFieldUpdateOperationsInput | No |
| expiry | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutAuthenticationTokenNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expiry | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| userId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| token | String | No |
| expiry | DateTime | Null | Yes |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| token | String | StringFieldUpdateOperationsInput | No |
| expiry | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expiry | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| userId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| phone | String | Null | Yes |
| birthDate | DateTime | Null | Yes |
| gender | Gender | Null | Yes |
| photo | String | Null | Yes |
| bio | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userAddress | UserAddressCreateNestedManyWithoutUserProfileInput | No |
| socialLinks | SocialLinkCreateNestedManyWithoutUserProfileInput | No |
| user | UserCreateNestedOneWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| phone | String | Null | Yes |
| birthDate | DateTime | Null | Yes |
| gender | Gender | Null | Yes |
| photo | String | Null | Yes |
| bio | String | Null | Yes |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userAddress | UserAddressUncheckedCreateNestedManyWithoutUserProfileInput | No |
| socialLinks | SocialLinkUncheckedCreateNestedManyWithoutUserProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| birthDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| gender | Gender | NullableEnumGenderFieldUpdateOperationsInput | Null | Yes |
| photo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bio | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userAddress | UserAddressUpdateManyWithoutUserProfileNestedInput | No |
| socialLinks | SocialLinkUpdateManyWithoutUserProfileNestedInput | No |
| user | UserUpdateOneRequiredWithoutProfileNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| birthDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| gender | Gender | NullableEnumGenderFieldUpdateOperationsInput | Null | Yes |
| photo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bio | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userAddress | UserAddressUncheckedUpdateManyWithoutUserProfileNestedInput | No |
| socialLinks | SocialLinkUncheckedUpdateManyWithoutUserProfileNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| phone | String | Null | Yes |
| birthDate | DateTime | Null | Yes |
| gender | Gender | Null | Yes |
| photo | String | Null | Yes |
| bio | String | Null | Yes |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| birthDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| gender | Gender | NullableEnumGenderFieldUpdateOperationsInput | Null | Yes |
| photo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bio | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| birthDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| gender | Gender | NullableEnumGenderFieldUpdateOperationsInput | Null | Yes |
| photo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bio | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userProfile | UserProfileCreateNestedOneWithoutUserAddressInput | No |
| address | AddressCreateNestedOneWithoutUserAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId | Int | No |
| addressId | Int | No |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userProfile | UserProfileUpdateOneRequiredWithoutUserAddressNestedInput | No |
| address | AddressUpdateOneRequiredWithoutUserAddressNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userProfileId | Int | IntFieldUpdateOperationsInput | No |
| addressId | Int | IntFieldUpdateOperationsInput | No |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId | Int | No |
| addressId | Int | No |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userProfileId | Int | IntFieldUpdateOperationsInput | No |
| addressId | Int | IntFieldUpdateOperationsInput | No |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| street | String | No |
| unit | String | No |
| city | String | No |
| zipcode | String | No |
| state | String | No |
| country | String | No |
| planet | String | Null | Yes |
| solarSystem | String | Null | Yes |
| galaxy | String | Null | Yes |
| localGroup | String | Null | Yes |
| localCluster | String | Null | Yes |
| universe | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userAddress | UserAddressCreateNestedManyWithoutAddressInput | No |
| paymentDetail | PaymentDetailCreateNestedManyWithoutBillingAddressInput | No |
| shippingDetail | ShippingDetailCreateNestedManyWithoutShippingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| street | String | No |
| unit | String | No |
| city | String | No |
| zipcode | String | No |
| state | String | No |
| country | String | No |
| planet | String | Null | Yes |
| solarSystem | String | Null | Yes |
| galaxy | String | Null | Yes |
| localGroup | String | Null | Yes |
| localCluster | String | Null | Yes |
| universe | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userAddress | UserAddressUncheckedCreateNestedManyWithoutAddressInput | No |
| paymentDetail | PaymentDetailUncheckedCreateNestedManyWithoutBillingAddressInput | No |
| shippingDetail | ShippingDetailUncheckedCreateNestedManyWithoutShippingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| street | String | No |
| unit | String | No |
| city | String | No |
| zipcode | String | No |
| state | String | No |
| country | String | No |
| planet | String | Null | Yes |
| solarSystem | String | Null | Yes |
| galaxy | String | Null | Yes |
| localGroup | String | Null | Yes |
| localCluster | String | Null | Yes |
| universe | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| street | String | StringFieldUpdateOperationsInput | No |
| unit | String | StringFieldUpdateOperationsInput | No |
| city | String | StringFieldUpdateOperationsInput | No |
| zipcode | String | StringFieldUpdateOperationsInput | No |
| state | String | StringFieldUpdateOperationsInput | No |
| country | String | StringFieldUpdateOperationsInput | No |
| planet | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| solarSystem | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| galaxy | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| localGroup | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| localCluster | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| universe | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| street | String | StringFieldUpdateOperationsInput | No |
| unit | String | StringFieldUpdateOperationsInput | No |
| city | String | StringFieldUpdateOperationsInput | No |
| zipcode | String | StringFieldUpdateOperationsInput | No |
| state | String | StringFieldUpdateOperationsInput | No |
| country | String | StringFieldUpdateOperationsInput | No |
| planet | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| solarSystem | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| galaxy | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| localGroup | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| localCluster | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| universe | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| socialProvider | String | No |
| socialUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| UserProfile | UserProfileCreateNestedOneWithoutSocialLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId | Int | No |
| socialProvider | String | No |
| socialUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| socialProvider | String | StringFieldUpdateOperationsInput | No |
| socialUrl | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| UserProfile | UserProfileUpdateOneRequiredWithoutSocialLinksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userProfileId | Int | IntFieldUpdateOperationsInput | No |
| socialProvider | String | StringFieldUpdateOperationsInput | No |
| socialUrl | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId | Int | No |
| socialProvider | String | No |
| socialUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| socialProvider | String | StringFieldUpdateOperationsInput | No |
| socialUrl | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userProfileId | Int | IntFieldUpdateOperationsInput | No |
| socialProvider | String | StringFieldUpdateOperationsInput | No |
| socialUrl | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | No |
| message | String | No |
| rating | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| author | UserCreateNestedOneWithoutAuthoredReviewsInput | No |
| product | ProductCreateNestedOneWithoutReviewsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| title | String | No |
| message | String | No |
| rating | Int | No |
| authorId | Int | No |
| productId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | StringFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutAuthoredReviewsNestedInput | No |
| product | ProductUpdateOneRequiredWithoutReviewsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| authorId | Int | IntFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| title | String | No |
| message | String | No |
| rating | Int | No |
| authorId | Int | No |
| productId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | StringFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| authorId | Int | IntFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| category | CategoryCreateNestedOneWithoutPromotionCategoryInput | No |
| promotion | PromotionCreateNestedOneWithoutPromotionCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryId | Int | No |
| promotionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| category | CategoryUpdateOneRequiredWithoutPromotionCategoryNestedInput | No |
| promotion | PromotionUpdateOneRequiredWithoutPromotionCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| categoryId | Int | IntFieldUpdateOperationsInput | No |
| promotionId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryId | Int | No |
| promotionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| categoryId | Int | IntFieldUpdateOperationsInput | No |
| promotionId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| promotionName | String | No |
| promotionDesc | String | No |
| promotionRate | Int | No |
| isActive | Boolean | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| promotionCategory | PromotionCategoryCreateNestedManyWithoutPromotionInput | No |
| CartItem | CartItemCreateNestedOneWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| promotionName | String | No |
| promotionDesc | String | No |
| promotionRate | Int | No |
| isActive | Boolean | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| promotionCategory | PromotionCategoryUncheckedCreateNestedManyWithoutPromotionInput | No |
| CartItem | CartItemUncheckedCreateNestedOneWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| promotionName | String | StringFieldUpdateOperationsInput | No |
| promotionDesc | String | StringFieldUpdateOperationsInput | No |
| promotionRate | Int | IntFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| promotionCategory | PromotionCategoryUpdateManyWithoutPromotionNestedInput | No |
| CartItem | CartItemUpdateOneWithoutPromotionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| promotionName | String | StringFieldUpdateOperationsInput | No |
| promotionDesc | String | StringFieldUpdateOperationsInput | No |
| promotionRate | Int | IntFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| promotionCategory | PromotionCategoryUncheckedUpdateManyWithoutPromotionNestedInput | No |
| CartItem | CartItemUncheckedUpdateOneWithoutPromotionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| promotionName | String | No |
| promotionDesc | String | No |
| promotionRate | Int | No |
| isActive | Boolean | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| promotionName | String | StringFieldUpdateOperationsInput | No |
| promotionDesc | String | StringFieldUpdateOperationsInput | No |
| promotionRate | Int | IntFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| promotionName | String | StringFieldUpdateOperationsInput | No |
| promotionDesc | String | StringFieldUpdateOperationsInput | No |
| promotionRate | Int | IntFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| cart | CartCreateNestedOneWithoutCartItemsInput | No |
| product | ProductCreateNestedOneWithoutCartItemInput | No |
| Promotion | PromotionCreateNestedOneWithoutCartItemInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| cartId | Int | No |
| productId | Int | No |
| quantity | Int | No |
| promotionId | Int | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cart | CartUpdateOneRequiredWithoutCartItemsNestedInput | No |
| product | ProductUpdateOneRequiredWithoutCartItemNestedInput | No |
| Promotion | PromotionUpdateOneWithoutCartItemNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| cartId | Int | IntFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| promotionId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| cartId | Int | No |
| productId | Int | No |
| quantity | Int | No |
| promotionId | Int | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| cartId | Int | IntFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| promotionId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutCartInput | No |
| cartItems | CartItemCreateNestedManyWithoutCartInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| cartItems | CartItemUncheckedCreateNestedManyWithoutCartInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutCartNestedInput | No |
| cartItems | CartItemUpdateManyWithoutCartNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cartItems | CartItemUncheckedUpdateManyWithoutCartNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutOrdersInput | No |
| shippingDetail | ShippingDetailCreateNestedOneWithoutOrderInput | No |
| paymentDetail | PaymentDetailCreateNestedOneWithoutOrderInput | No |
| orderDetail | OrderDetailCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| userId | Int | No |
| updatedAt | DateTime | No |
| shippingDetail | ShippingDetailUncheckedCreateNestedOneWithoutOrderInput | No |
| paymentDetail | PaymentDetailUncheckedCreateNestedOneWithoutOrderInput | No |
| orderDetail | OrderDetailUncheckedCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| status | OrderStatusType | EnumOrderStatusTypeFieldUpdateOperationsInput | No |
| tax | Decimal | DecimalFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutOrdersNestedInput | No |
| shippingDetail | ShippingDetailUpdateOneWithoutOrderNestedInput | No |
| paymentDetail | PaymentDetailUpdateOneWithoutOrderNestedInput | No |
| orderDetail | OrderDetailUpdateManyWithoutOrderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| status | OrderStatusType | EnumOrderStatusTypeFieldUpdateOperationsInput | No |
| tax | Decimal | DecimalFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingDetail | ShippingDetailUncheckedUpdateOneWithoutOrderNestedInput | No |
| paymentDetail | PaymentDetailUncheckedUpdateOneWithoutOrderNestedInput | No |
| orderDetail | OrderDetailUncheckedUpdateManyWithoutOrderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| userId | Int | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| status | OrderStatusType | EnumOrderStatusTypeFieldUpdateOperationsInput | No |
| tax | Decimal | DecimalFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| status | OrderStatusType | EnumOrderStatusTypeFieldUpdateOperationsInput | No |
| tax | Decimal | DecimalFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| quantity | Int | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| product | ProductCreateNestedOneWithoutOrderDetailInput | No |
| order | OrderCreateNestedOneWithoutOrderDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| orderId | String | No |
| productId | Int | No |
| quantity | Int | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| product | ProductUpdateOneRequiredWithoutOrderDetailNestedInput | No |
| order | OrderUpdateOneRequiredWithoutOrderDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| orderId | String | No |
| productId | Int | No |
| quantity | Int | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| paymentMethod | PaymentMethodCreateNestedManyWithoutPaymentDetailInput | No |
| billingAddress | AddressCreateNestedOneWithoutPaymentDetailInput | No |
| order | OrderCreateNestedOneWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| billingAddressId | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| paymentMethod | PaymentMethodUncheckedCreateNestedManyWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| paymentMethod | PaymentMethodUpdateManyWithoutPaymentDetailNestedInput | No |
| billingAddress | AddressUpdateOneRequiredWithoutPaymentDetailNestedInput | No |
| order | OrderUpdateOneRequiredWithoutPaymentDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| billingAddressId | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| paymentMethod | PaymentMethodUncheckedUpdateManyWithoutPaymentDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| billingAddressId | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| billingAddressId | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| paymentType | PaymentType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| paymentMethod | PaymentMethodCreateNestedManyWithoutPaymentOptionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| paymentType | PaymentType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| paymentMethod | PaymentMethodUncheckedCreateNestedManyWithoutPaymentOptionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| paymentType | PaymentType | EnumPaymentTypeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| paymentMethod | PaymentMethodUpdateManyWithoutPaymentOptionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| paymentType | PaymentType | EnumPaymentTypeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| paymentMethod | PaymentMethodUncheckedUpdateManyWithoutPaymentOptionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| paymentType | PaymentType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| paymentType | PaymentType | EnumPaymentTypeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| paymentType | PaymentType | EnumPaymentTypeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| cardProvider | String | Null | Yes |
| nameOnCard | String | Null | Yes |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutPaymentMethodInput | No |
| paymentDetail | PaymentDetailCreateNestedOneWithoutPaymentMethodInput | No |
| paymentOption | PaymentOptionCreateNestedOneWithoutPaymentMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| paymentDetailId | Int | No |
| paymentOptionId | Int | No |
| cardProvider | String | Null | Yes |
| nameOnCard | String | Null | Yes |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| cardProvider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nameOnCard | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutPaymentMethodNestedInput | No |
| paymentDetail | PaymentDetailUpdateOneRequiredWithoutPaymentMethodNestedInput | No |
| paymentOption | PaymentOptionUpdateOneRequiredWithoutPaymentMethodNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| paymentDetailId | Int | IntFieldUpdateOperationsInput | No |
| paymentOptionId | Int | IntFieldUpdateOperationsInput | No |
| cardProvider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nameOnCard | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| paymentDetailId | Int | No |
| paymentOptionId | Int | No |
| cardProvider | String | Null | Yes |
| nameOnCard | String | Null | Yes |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| cardProvider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nameOnCard | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| paymentDetailId | Int | IntFieldUpdateOperationsInput | No |
| paymentOptionId | Int | IntFieldUpdateOperationsInput | No |
| cardProvider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nameOnCard | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| estimatedArrival | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| shippingAddress | AddressCreateNestedOneWithoutShippingDetailInput | No |
| shippingMethod | ShippingMethodCreateNestedOneWithoutShippingDetailInput | No |
| order | OrderCreateNestedOneWithoutShippingDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| estimatedArrival | DateTime | No |
| shippingAddressId | Int | No |
| shippingMethodId | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| estimatedArrival | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingAddress | AddressUpdateOneRequiredWithoutShippingDetailNestedInput | No |
| shippingMethod | ShippingMethodUpdateOneRequiredWithoutShippingDetailNestedInput | No |
| order | OrderUpdateOneRequiredWithoutShippingDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| estimatedArrival | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingAddressId | Int | IntFieldUpdateOperationsInput | No |
| shippingMethodId | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| estimatedArrival | DateTime | No |
| shippingAddressId | Int | No |
| shippingMethodId | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| estimatedArrival | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| estimatedArrival | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingAddressId | Int | IntFieldUpdateOperationsInput | No |
| shippingMethodId | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| price | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| shippingDetail | ShippingDetailCreateNestedManyWithoutShippingMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| price | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| shippingDetail | ShippingDetailUncheckedCreateNestedManyWithoutShippingMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingDetail | ShippingDetailUpdateManyWithoutShippingMethodNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingDetail | ShippingDetailUncheckedUpdateManyWithoutShippingMethodNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| price | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutRolesInput | No |
| role | RoleCreateNestedOneWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| roleId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutRolesNestedInput | No |
| role | RoleUpdateOneRequiredWithoutUsersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| roleId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| roleId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| roleId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| users | UserRoleCreateNestedManyWithoutRoleInput | No |
| permissions | RolePermissionCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| users | UserRoleUncheckedCreateNestedManyWithoutRoleInput | No |
| permissions | RolePermissionUncheckedCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| users | UserRoleUpdateManyWithoutRoleNestedInput | No |
| permissions | RolePermissionUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| users | UserRoleUncheckedUpdateManyWithoutRoleNestedInput | No |
| permissions | RolePermissionUncheckedUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| role | RoleCreateNestedOneWithoutPermissionsInput | No |
| permission | PermissionCreateNestedOneWithoutRolesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| roleId | Int | No |
| permissionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| role | RoleUpdateOneRequiredWithoutPermissionsNestedInput | No |
| permission | PermissionUpdateOneRequiredWithoutRolesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| roleId | Int | IntFieldUpdateOperationsInput | No |
| permissionId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| roleId | Int | No |
| permissionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| roleId | Int | IntFieldUpdateOperationsInput | No |
| permissionId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource | String | No |
| accessType | AccessType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| roles | RolePermissionCreateNestedManyWithoutPermissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resource | String | No |
| accessType | AccessType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| roles | RolePermissionUncheckedCreateNestedManyWithoutPermissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource | String | StringFieldUpdateOperationsInput | No |
| accessType | AccessType | EnumAccessTypeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| roles | RolePermissionUpdateManyWithoutPermissionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| resource | String | StringFieldUpdateOperationsInput | No |
| accessType | AccessType | EnumAccessTypeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| roles | RolePermissionUncheckedUpdateManyWithoutPermissionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resource | String | No |
| accessType | AccessType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| resource | String | StringFieldUpdateOperationsInput | No |
| accessType | AccessType | EnumAccessTypeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| resource | String | StringFieldUpdateOperationsInput | No |
| accessType | AccessType | EnumAccessTypeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Grade | EnumGradeFieldRefInput | Null | Yes |
| in | Grade[] | ListEnumGradeFieldRefInput | Null | Yes |
| notIn | Grade[] | ListEnumGradeFieldRefInput | Null | Yes |
| not | Grade | NestedEnumGradeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | DecimalFieldRefInput | No |
| in | Decimal[] | ListDecimalFieldRefInput | No |
| notIn | Decimal[] | ListDecimalFieldRefInput | No |
| lt | Decimal | DecimalFieldRefInput | No |
| lte | Decimal | DecimalFieldRefInput | No |
| gt | Decimal | DecimalFieldRefInput | No |
| gte | Decimal | DecimalFieldRefInput | No |
| not | Decimal | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | DecimalFieldRefInput | Null | Yes |
| in | Decimal[] | ListDecimalFieldRefInput | Null | Yes |
| notIn | Decimal[] | ListDecimalFieldRefInput | Null | Yes |
| lt | Decimal | DecimalFieldRefInput | No |
| lte | Decimal | DecimalFieldRefInput | No |
| gt | Decimal | DecimalFieldRefInput | No |
| gte | Decimal | DecimalFieldRefInput | No |
| not | Decimal | NestedDecimalNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | CategoryWhereInput | No |
| isNot | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | OrderDetailWhereInput | No |
| some | OrderDetailWhereInput | No |
| none | OrderDetailWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CartItemWhereInput | No |
| some | CartItemWhereInput | No |
| none | CartItemWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ProductInventoryWhereInput | No |
| some | ProductInventoryWhereInput | No |
| none | ProductInventoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ProductImageWhereInput | No |
| some | ProductImageWhereInput | No |
| none | ProductImageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | UserReviewWhereInput | No |
| some | UserReviewWhereInput | No |
| none | UserReviewWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| sort | SortOrder | No |
| nulls | NullsOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| productName | SortOrder | No |
| productDesc | SortOrder | No |
| shortDesc | SortOrder | No |
| grade | SortOrder | No |
| sku | SortOrder | No |
| price | SortOrder | No |
| msrp | SortOrder | No |
| size | SortOrder | No |
| weight | SortOrder | No |
| weightUnit | SortOrder | No |
| features | SortOrder | No |
| quantity | SortOrder | No |
| soldQuantity | SortOrder | No |
| isActive | SortOrder | No |
| isAvailable | SortOrder | No |
| slug | SortOrder | No |
| imageUrl | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| categoryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| price | SortOrder | No |
| msrp | SortOrder | No |
| weight | SortOrder | No |
| quantity | SortOrder | No |
| soldQuantity | SortOrder | No |
| categoryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| productName | SortOrder | No |
| productDesc | SortOrder | No |
| shortDesc | SortOrder | No |
| grade | SortOrder | No |
| sku | SortOrder | No |
| price | SortOrder | No |
| msrp | SortOrder | No |
| size | SortOrder | No |
| weight | SortOrder | No |
| weightUnit | SortOrder | No |
| quantity | SortOrder | No |
| soldQuantity | SortOrder | No |
| isActive | SortOrder | No |
| isAvailable | SortOrder | No |
| slug | SortOrder | No |
| imageUrl | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| categoryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| productName | SortOrder | No |
| productDesc | SortOrder | No |
| shortDesc | SortOrder | No |
| grade | SortOrder | No |
| sku | SortOrder | No |
| price | SortOrder | No |
| msrp | SortOrder | No |
| size | SortOrder | No |
| weight | SortOrder | No |
| weightUnit | SortOrder | No |
| quantity | SortOrder | No |
| soldQuantity | SortOrder | No |
| isActive | SortOrder | No |
| isAvailable | SortOrder | No |
| slug | SortOrder | No |
| imageUrl | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| categoryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| price | SortOrder | No |
| msrp | SortOrder | No |
| weight | SortOrder | No |
| quantity | SortOrder | No |
| soldQuantity | SortOrder | No |
| categoryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Grade | EnumGradeFieldRefInput | Null | Yes |
| in | Grade[] | ListEnumGradeFieldRefInput | Null | Yes |
| notIn | Grade[] | ListEnumGradeFieldRefInput | Null | Yes |
| not | Grade | NestedEnumGradeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumGradeNullableFilter | No |
| _max | NestedEnumGradeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | DecimalFieldRefInput | No |
| in | Decimal[] | ListDecimalFieldRefInput | No |
| notIn | Decimal[] | ListDecimalFieldRefInput | No |
| lt | Decimal | DecimalFieldRefInput | No |
| lte | Decimal | DecimalFieldRefInput | No |
| gt | Decimal | DecimalFieldRefInput | No |
| gte | Decimal | DecimalFieldRefInput | No |
| not | Decimal | NestedDecimalWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedDecimalFilter | No |
| _sum | NestedDecimalFilter | No |
| _min | NestedDecimalFilter | No |
| _max | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | DecimalFieldRefInput | Null | Yes |
| in | Decimal[] | ListDecimalFieldRefInput | Null | Yes |
| notIn | Decimal[] | ListDecimalFieldRefInput | Null | Yes |
| lt | Decimal | DecimalFieldRefInput | No |
| lte | Decimal | DecimalFieldRefInput | No |
| gt | Decimal | DecimalFieldRefInput | No |
| gte | Decimal | DecimalFieldRefInput | No |
| not | Decimal | NestedDecimalNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedDecimalNullableFilter | No |
| _sum | NestedDecimalNullableFilter | No |
| _min | NestedDecimalNullableFilter | No |
| _max | NestedDecimalNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| _count | NestedIntNullableFilter | No |
| _min | NestedJsonNullableFilter | No |
| _max | NestedJsonNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | CategoryWhereInput | Null | Yes |
| isNot | CategoryWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | CategoryWhereInput | No |
| some | CategoryWhereInput | No |
| none | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ProductWhereInput | No |
| some | ProductWhereInput | No |
| none | ProductWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PromotionCategoryWhereInput | No |
| some | PromotionCategoryWhereInput | No |
| none | PromotionCategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryName | SortOrder | No |
| categoryDesc | SortOrder | No |
| slug | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| parentCategoryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryName | SortOrder | No |
| categoryDesc | SortOrder | No |
| slug | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| parentCategoryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryName | SortOrder | No |
| categoryDesc | SortOrder | No |
| slug | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| parentCategoryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | InventoryStatus | EnumInventoryStatusFieldRefInput | No |
| in | InventoryStatus[] | ListEnumInventoryStatusFieldRefInput | No |
| notIn | InventoryStatus[] | ListEnumInventoryStatusFieldRefInput | No |
| not | InventoryStatus | NestedEnumInventoryStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | ProductWhereInput | No |
| isNot | ProductWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| quantity | SortOrder | No |
| reStockLevel | SortOrder | No |
| status | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| productId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| quantity | SortOrder | No |
| reStockLevel | SortOrder | No |
| productId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| quantity | SortOrder | No |
| reStockLevel | SortOrder | No |
| status | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| productId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| quantity | SortOrder | No |
| reStockLevel | SortOrder | No |
| status | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| productId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| quantity | SortOrder | No |
| reStockLevel | SortOrder | No |
| productId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | InventoryStatus | EnumInventoryStatusFieldRefInput | No |
| in | InventoryStatus[] | ListEnumInventoryStatusFieldRefInput | No |
| notIn | InventoryStatus[] | ListEnumInventoryStatusFieldRefInput | No |
| not | InventoryStatus | NestedEnumInventoryStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumInventoryStatusFilter | No |
| _max | NestedEnumInventoryStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| imageUrl | SortOrder | No |
| productId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| imageUrl | SortOrder | No |
| productId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| imageUrl | SortOrder | No |
| productId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | AuthenticationTokenWhereInput | Null | Yes |
| isNot | AuthenticationTokenWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | UserProfileWhereInput | Null | Yes |
| isNot | UserProfileWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | CartWhereInput | Null | Yes |
| isNot | CartWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | LoginWhereInput | Null | Yes |
| isNot | LoginWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | UserRoleWhereInput | No |
| some | UserRoleWhereInput | No |
| none | UserRoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PaymentMethodWhereInput | No |
| some | PaymentMethodWhereInput | No |
| none | PaymentMethodWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | OrderWhereInput | No |
| some | OrderWhereInput | No |
| none | OrderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| SortOrder | No | |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| preference | SortOrder | No |
| balance | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| SortOrder | No | |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| balance | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| SortOrder | No | |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| balance | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | No |
| isNot | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| username | SortOrder | No |
| password | SortOrder | No |
| failedAttempts | SortOrder | No |
| lockoutTime | SortOrder | No |
| lastLogin | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| username | SortOrder | No |
| password | SortOrder | No |
| failedAttempts | SortOrder | No |
| lockoutTime | SortOrder | No |
| lastLogin | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| username | SortOrder | No |
| password | SortOrder | No |
| failedAttempts | SortOrder | No |
| lockoutTime | SortOrder | No |
| lastLogin | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| token | SortOrder | No |
| expiry | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| token | SortOrder | No |
| expiry | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| token | SortOrder | No |
| expiry | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Gender | EnumGenderFieldRefInput | Null | Yes |
| in | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| notIn | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| not | Gender | NestedEnumGenderNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | UserAddressWhereInput | No |
| some | UserAddressWhereInput | No |
| none | UserAddressWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | SocialLinkWhereInput | No |
| some | SocialLinkWhereInput | No |
| none | SocialLinkWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | No |
| lastName | SortOrder | No |
| phone | SortOrder | No |
| birthDate | SortOrder | No |
| gender | SortOrder | No |
| photo | SortOrder | No |
| bio | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | No |
| lastName | SortOrder | No |
| phone | SortOrder | No |
| birthDate | SortOrder | No |
| gender | SortOrder | No |
| photo | SortOrder | No |
| bio | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | No |
| lastName | SortOrder | No |
| phone | SortOrder | No |
| birthDate | SortOrder | No |
| gender | SortOrder | No |
| photo | SortOrder | No |
| bio | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Gender | EnumGenderFieldRefInput | Null | Yes |
| in | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| notIn | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| not | Gender | NestedEnumGenderNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumGenderNullableFilter | No |
| _max | NestedEnumGenderNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserProfileWhereInput | No |
| isNot | UserProfileWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | AddressWhereInput | No |
| isNot | AddressWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userProfileId | Int | No |
| addressId | Int | No |
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userProfileId | SortOrder | No |
| addressId | SortOrder | No |
| isDefault | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userProfileId | SortOrder | No |
| addressId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userProfileId | SortOrder | No |
| addressId | SortOrder | No |
| isDefault | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userProfileId | SortOrder | No |
| addressId | SortOrder | No |
| isDefault | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userProfileId | SortOrder | No |
| addressId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | PaymentDetailWhereInput | No |
| some | PaymentDetailWhereInput | No |
| none | PaymentDetailWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ShippingDetailWhereInput | No |
| some | ShippingDetailWhereInput | No |
| none | ShippingDetailWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| street | SortOrder | No |
| unit | SortOrder | No |
| city | SortOrder | No |
| zipcode | SortOrder | No |
| state | SortOrder | No |
| country | SortOrder | No |
| planet | SortOrder | No |
| solarSystem | SortOrder | No |
| galaxy | SortOrder | No |
| localGroup | SortOrder | No |
| localCluster | SortOrder | No |
| universe | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| street | SortOrder | No |
| unit | SortOrder | No |
| city | SortOrder | No |
| zipcode | SortOrder | No |
| state | SortOrder | No |
| country | SortOrder | No |
| planet | SortOrder | No |
| solarSystem | SortOrder | No |
| galaxy | SortOrder | No |
| localGroup | SortOrder | No |
| localCluster | SortOrder | No |
| universe | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| street | SortOrder | No |
| unit | SortOrder | No |
| city | SortOrder | No |
| zipcode | SortOrder | No |
| state | SortOrder | No |
| country | SortOrder | No |
| planet | SortOrder | No |
| solarSystem | SortOrder | No |
| galaxy | SortOrder | No |
| localGroup | SortOrder | No |
| localCluster | SortOrder | No |
| universe | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userProfileId | SortOrder | No |
| socialProvider | SortOrder | No |
| socialUrl | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userProfileId | SortOrder | No |
| socialProvider | SortOrder | No |
| socialUrl | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userProfileId | SortOrder | No |
| socialProvider | SortOrder | No |
| socialUrl | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| message | SortOrder | No |
| rating | SortOrder | No |
| authorId | SortOrder | No |
| productId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| rating | SortOrder | No |
| authorId | SortOrder | No |
| productId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| message | SortOrder | No |
| rating | SortOrder | No |
| authorId | SortOrder | No |
| productId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| message | SortOrder | No |
| rating | SortOrder | No |
| authorId | SortOrder | No |
| productId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| rating | SortOrder | No |
| authorId | SortOrder | No |
| productId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | PromotionWhereInput | No |
| isNot | PromotionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| categoryId | Int | No |
| promotionId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| promotionId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| promotionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| promotionId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| promotionId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| promotionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | CartItemWhereInput | Null | Yes |
| isNot | CartItemWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| promotionName | SortOrder | No |
| promotionDesc | SortOrder | No |
| promotionRate | SortOrder | No |
| isActive | SortOrder | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| promotionName | SortOrder | No |
| promotionDesc | SortOrder | No |
| promotionRate | SortOrder | No |
| isActive | SortOrder | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| promotionName | SortOrder | No |
| promotionDesc | SortOrder | No |
| promotionRate | SortOrder | No |
| isActive | SortOrder | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | CartWhereInput | No |
| isNot | CartWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | PromotionWhereInput | Null | Yes |
| isNot | PromotionWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| cartId | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| promotionId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| cartId | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| promotionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| cartId | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| promotionId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| cartId | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| promotionId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| cartId | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| promotionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrderStatusType | EnumOrderStatusTypeFieldRefInput | No |
| in | OrderStatusType[] | ListEnumOrderStatusTypeFieldRefInput | No |
| notIn | OrderStatusType[] | ListEnumOrderStatusTypeFieldRefInput | No |
| not | OrderStatusType | NestedEnumOrderStatusTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | ShippingDetailWhereInput | Null | Yes |
| isNot | ShippingDetailWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | PaymentDetailWhereInput | Null | Yes |
| isNot | PaymentDetailWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| status | SortOrder | No |
| tax | SortOrder | No |
| total | SortOrder | No |
| createdAt | SortOrder | No |
| userId | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| tax | SortOrder | No |
| total | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| status | SortOrder | No |
| tax | SortOrder | No |
| total | SortOrder | No |
| createdAt | SortOrder | No |
| userId | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| status | SortOrder | No |
| tax | SortOrder | No |
| total | SortOrder | No |
| createdAt | SortOrder | No |
| userId | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| tax | SortOrder | No |
| total | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrderStatusType | EnumOrderStatusTypeFieldRefInput | No |
| in | OrderStatusType[] | ListEnumOrderStatusTypeFieldRefInput | No |
| notIn | OrderStatusType[] | ListEnumOrderStatusTypeFieldRefInput | No |
| not | OrderStatusType | NestedEnumOrderStatusTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumOrderStatusTypeFilter | No |
| _max | NestedEnumOrderStatusTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | OrderWhereInput | No |
| isNot | OrderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| orderId | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| total | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| total | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| orderId | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| total | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| orderId | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| total | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| productId | SortOrder | No |
| quantity | SortOrder | No |
| total | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| billingAddressId | SortOrder | No |
| orderId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| billingAddressId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| billingAddressId | SortOrder | No |
| orderId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| billingAddressId | SortOrder | No |
| orderId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| billingAddressId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PaymentType | EnumPaymentTypeFieldRefInput | No |
| in | PaymentType[] | ListEnumPaymentTypeFieldRefInput | No |
| notIn | PaymentType[] | ListEnumPaymentTypeFieldRefInput | No |
| not | PaymentType | NestedEnumPaymentTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| paymentType | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| paymentType | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| paymentType | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PaymentType | EnumPaymentTypeFieldRefInput | No |
| in | PaymentType[] | ListEnumPaymentTypeFieldRefInput | No |
| notIn | PaymentType[] | ListEnumPaymentTypeFieldRefInput | No |
| not | PaymentType | NestedEnumPaymentTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPaymentTypeFilter | No |
| _max | NestedEnumPaymentTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | PaymentDetailWhereInput | No |
| isNot | PaymentDetailWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | PaymentOptionWhereInput | No |
| isNot | PaymentOptionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| paymentDetailId | SortOrder | No |
| paymentOptionId | SortOrder | No |
| cardProvider | SortOrder | No |
| nameOnCard | SortOrder | No |
| isDefault | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| paymentDetailId | SortOrder | No |
| paymentOptionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| paymentDetailId | SortOrder | No |
| paymentOptionId | SortOrder | No |
| cardProvider | SortOrder | No |
| nameOnCard | SortOrder | No |
| isDefault | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| paymentDetailId | SortOrder | No |
| paymentOptionId | SortOrder | No |
| cardProvider | SortOrder | No |
| nameOnCard | SortOrder | No |
| isDefault | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| paymentDetailId | SortOrder | No |
| paymentOptionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | ShippingMethodWhereInput | No |
| isNot | ShippingMethodWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| estimatedArrival | SortOrder | No |
| shippingAddressId | SortOrder | No |
| shippingMethodId | SortOrder | No |
| orderId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shippingAddressId | SortOrder | No |
| shippingMethodId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| estimatedArrival | SortOrder | No |
| shippingAddressId | SortOrder | No |
| shippingMethodId | SortOrder | No |
| orderId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| estimatedArrival | SortOrder | No |
| shippingAddressId | SortOrder | No |
| shippingMethodId | SortOrder | No |
| orderId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shippingAddressId | SortOrder | No |
| shippingMethodId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| price | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| price | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| price | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | RoleWhereInput | No |
| isNot | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | Int | No |
| roleId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| roleId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| roleId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| roleId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| roleId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| roleId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | RolePermissionWhereInput | No |
| some | RolePermissionWhereInput | No |
| none | RolePermissionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | PermissionWhereInput | No |
| isNot | PermissionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| roleId | Int | No |
| permissionId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| roleId | SortOrder | No |
| permissionId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| roleId | SortOrder | No |
| permissionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| roleId | SortOrder | No |
| permissionId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| roleId | SortOrder | No |
| permissionId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| roleId | SortOrder | No |
| permissionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AccessType | EnumAccessTypeFieldRefInput | No |
| in | AccessType[] | ListEnumAccessTypeFieldRefInput | No |
| notIn | AccessType[] | ListEnumAccessTypeFieldRefInput | No |
| not | AccessType | NestedEnumAccessTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource | SortOrder | No |
| accessType | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource | SortOrder | No |
| accessType | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource | SortOrder | No |
| accessType | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AccessType | EnumAccessTypeFieldRefInput | No |
| in | AccessType[] | ListEnumAccessTypeFieldRefInput | No |
| notIn | AccessType[] | ListEnumAccessTypeFieldRefInput | No |
| not | AccessType | NestedEnumAccessTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAccessTypeFilter | No |
| _max | NestedEnumAccessTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutProductInput | CategoryUncheckedCreateWithoutProductInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutProductInput | No |
| connect | CategoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderDetailCreateWithoutProductInput | OrderDetailCreateWithoutProductInput[] | OrderDetailUncheckedCreateWithoutProductInput | OrderDetailUncheckedCreateWithoutProductInput[] | No |
| connectOrCreate | OrderDetailCreateOrConnectWithoutProductInput | OrderDetailCreateOrConnectWithoutProductInput[] | No |
| createMany | OrderDetailCreateManyProductInputEnvelope | No |
| connect | OrderDetailWhereUniqueInput | OrderDetailWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartItemCreateWithoutProductInput | CartItemCreateWithoutProductInput[] | CartItemUncheckedCreateWithoutProductInput | CartItemUncheckedCreateWithoutProductInput[] | No |
| connectOrCreate | CartItemCreateOrConnectWithoutProductInput | CartItemCreateOrConnectWithoutProductInput[] | No |
| createMany | CartItemCreateManyProductInputEnvelope | No |
| connect | CartItemWhereUniqueInput | CartItemWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductImageCreateWithoutProductInput | ProductImageCreateWithoutProductInput[] | ProductImageUncheckedCreateWithoutProductInput | ProductImageUncheckedCreateWithoutProductInput[] | No |
| connectOrCreate | ProductImageCreateOrConnectWithoutProductInput | ProductImageCreateOrConnectWithoutProductInput[] | No |
| createMany | ProductImageCreateManyProductInputEnvelope | No |
| connect | ProductImageWhereUniqueInput | ProductImageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserReviewCreateWithoutProductInput | UserReviewCreateWithoutProductInput[] | UserReviewUncheckedCreateWithoutProductInput | UserReviewUncheckedCreateWithoutProductInput[] | No |
| connectOrCreate | UserReviewCreateOrConnectWithoutProductInput | UserReviewCreateOrConnectWithoutProductInput[] | No |
| createMany | UserReviewCreateManyProductInputEnvelope | No |
| connect | UserReviewWhereUniqueInput | UserReviewWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderDetailCreateWithoutProductInput | OrderDetailCreateWithoutProductInput[] | OrderDetailUncheckedCreateWithoutProductInput | OrderDetailUncheckedCreateWithoutProductInput[] | No |
| connectOrCreate | OrderDetailCreateOrConnectWithoutProductInput | OrderDetailCreateOrConnectWithoutProductInput[] | No |
| createMany | OrderDetailCreateManyProductInputEnvelope | No |
| connect | OrderDetailWhereUniqueInput | OrderDetailWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartItemCreateWithoutProductInput | CartItemCreateWithoutProductInput[] | CartItemUncheckedCreateWithoutProductInput | CartItemUncheckedCreateWithoutProductInput[] | No |
| connectOrCreate | CartItemCreateOrConnectWithoutProductInput | CartItemCreateOrConnectWithoutProductInput[] | No |
| createMany | CartItemCreateManyProductInputEnvelope | No |
| connect | CartItemWhereUniqueInput | CartItemWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductImageCreateWithoutProductInput | ProductImageCreateWithoutProductInput[] | ProductImageUncheckedCreateWithoutProductInput | ProductImageUncheckedCreateWithoutProductInput[] | No |
| connectOrCreate | ProductImageCreateOrConnectWithoutProductInput | ProductImageCreateOrConnectWithoutProductInput[] | No |
| createMany | ProductImageCreateManyProductInputEnvelope | No |
| connect | ProductImageWhereUniqueInput | ProductImageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserReviewCreateWithoutProductInput | UserReviewCreateWithoutProductInput[] | UserReviewUncheckedCreateWithoutProductInput | UserReviewUncheckedCreateWithoutProductInput[] | No |
| connectOrCreate | UserReviewCreateOrConnectWithoutProductInput | UserReviewCreateOrConnectWithoutProductInput[] | No |
| createMany | UserReviewCreateManyProductInputEnvelope | No |
| connect | UserReviewWhereUniqueInput | UserReviewWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Grade | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Decimal | No |
| increment | Decimal | No |
| decrement | Decimal | No |
| multiply | Decimal | No |
| divide | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| set | Decimal | Null | Yes |
| increment | Decimal | No |
| decrement | Decimal | No |
| multiply | Decimal | No |
| divide | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | Null | Yes |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutProductInput | CategoryUncheckedCreateWithoutProductInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutProductInput | No |
| upsert | CategoryUpsertWithoutProductInput | No |
| connect | CategoryWhereUniqueInput | No |
| update | CategoryUpdateToOneWithWhereWithoutProductInput | CategoryUpdateWithoutProductInput | CategoryUncheckedUpdateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | No |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutChildCategoriesInput | CategoryUncheckedCreateWithoutChildCategoriesInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutChildCategoriesInput | No |
| connect | CategoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductCreateWithoutCategoryInput | ProductCreateWithoutCategoryInput[] | ProductUncheckedCreateWithoutCategoryInput | ProductUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | ProductCreateOrConnectWithoutCategoryInput | ProductCreateOrConnectWithoutCategoryInput[] | No |
| createMany | ProductCreateManyCategoryInputEnvelope | No |
| connect | ProductWhereUniqueInput | ProductWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductCreateWithoutCategoryInput | ProductCreateWithoutCategoryInput[] | ProductUncheckedCreateWithoutCategoryInput | ProductUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | ProductCreateOrConnectWithoutCategoryInput | ProductCreateOrConnectWithoutCategoryInput[] | No |
| createMany | ProductCreateManyCategoryInputEnvelope | No |
| connect | ProductWhereUniqueInput | ProductWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutChildCategoriesInput | CategoryUncheckedCreateWithoutChildCategoriesInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutChildCategoriesInput | No |
| upsert | CategoryUpsertWithoutChildCategoriesInput | No |
| disconnect | Boolean | CategoryWhereInput | No |
| delete | Boolean | CategoryWhereInput | No |
| connect | CategoryWhereUniqueInput | No |
| update | CategoryUpdateToOneWithWhereWithoutChildCategoriesInput | CategoryUpdateWithoutChildCategoriesInput | CategoryUncheckedUpdateWithoutChildCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductCreateWithoutProductInventoryInput | ProductUncheckedCreateWithoutProductInventoryInput | No |
| connectOrCreate | ProductCreateOrConnectWithoutProductInventoryInput | No |
| connect | ProductWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | InventoryStatus | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductCreateWithoutProductInventoryInput | ProductUncheckedCreateWithoutProductInventoryInput | No |
| connectOrCreate | ProductCreateOrConnectWithoutProductInventoryInput | No |
| upsert | ProductUpsertWithoutProductInventoryInput | No |
| connect | ProductWhereUniqueInput | No |
| update | ProductUpdateToOneWithWhereWithoutProductInventoryInput | ProductUpdateWithoutProductInventoryInput | ProductUncheckedUpdateWithoutProductInventoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductCreateWithoutProductImageInput | ProductUncheckedCreateWithoutProductImageInput | No |
| connectOrCreate | ProductCreateOrConnectWithoutProductImageInput | No |
| connect | ProductWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductCreateWithoutProductImageInput | ProductUncheckedCreateWithoutProductImageInput | No |
| connectOrCreate | ProductCreateOrConnectWithoutProductImageInput | No |
| upsert | ProductUpsertWithoutProductImageInput | No |
| connect | ProductWhereUniqueInput | No |
| update | ProductUpdateToOneWithWhereWithoutProductImageInput | ProductUpdateWithoutProductImageInput | ProductUncheckedUpdateWithoutProductImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AuthenticationTokenCreateWithoutUserInput | AuthenticationTokenUncheckedCreateWithoutUserInput | No |
| connectOrCreate | AuthenticationTokenCreateOrConnectWithoutUserInput | No |
| connect | AuthenticationTokenWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserProfileCreateWithoutUserInput | UserProfileUncheckedCreateWithoutUserInput | No |
| connectOrCreate | UserProfileCreateOrConnectWithoutUserInput | No |
| connect | UserProfileWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserReviewCreateWithoutAuthorInput | UserReviewCreateWithoutAuthorInput[] | UserReviewUncheckedCreateWithoutAuthorInput | UserReviewUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | UserReviewCreateOrConnectWithoutAuthorInput | UserReviewCreateOrConnectWithoutAuthorInput[] | No |
| createMany | UserReviewCreateManyAuthorInputEnvelope | No |
| connect | UserReviewWhereUniqueInput | UserReviewWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartCreateWithoutUserInput | CartUncheckedCreateWithoutUserInput | No |
| connectOrCreate | CartCreateOrConnectWithoutUserInput | No |
| connect | CartWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginCreateWithoutUserInput | LoginUncheckedCreateWithoutUserInput | No |
| connectOrCreate | LoginCreateOrConnectWithoutUserInput | No |
| connect | LoginWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutUserInput | UserRoleCreateWithoutUserInput[] | UserRoleUncheckedCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutUserInput | UserRoleCreateOrConnectWithoutUserInput[] | No |
| createMany | UserRoleCreateManyUserInputEnvelope | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PaymentMethodCreateWithoutUserInput | PaymentMethodCreateWithoutUserInput[] | PaymentMethodUncheckedCreateWithoutUserInput | PaymentMethodUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | PaymentMethodCreateOrConnectWithoutUserInput | PaymentMethodCreateOrConnectWithoutUserInput[] | No |
| createMany | PaymentMethodCreateManyUserInputEnvelope | No |
| connect | PaymentMethodWhereUniqueInput | PaymentMethodWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutUserInput | OrderCreateWithoutUserInput[] | OrderUncheckedCreateWithoutUserInput | OrderUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutUserInput | OrderCreateOrConnectWithoutUserInput[] | No |
| createMany | OrderCreateManyUserInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AuthenticationTokenCreateWithoutUserInput | AuthenticationTokenUncheckedCreateWithoutUserInput | No |
| connectOrCreate | AuthenticationTokenCreateOrConnectWithoutUserInput | No |
| connect | AuthenticationTokenWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserProfileCreateWithoutUserInput | UserProfileUncheckedCreateWithoutUserInput | No |
| connectOrCreate | UserProfileCreateOrConnectWithoutUserInput | No |
| connect | UserProfileWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserReviewCreateWithoutAuthorInput | UserReviewCreateWithoutAuthorInput[] | UserReviewUncheckedCreateWithoutAuthorInput | UserReviewUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | UserReviewCreateOrConnectWithoutAuthorInput | UserReviewCreateOrConnectWithoutAuthorInput[] | No |
| createMany | UserReviewCreateManyAuthorInputEnvelope | No |
| connect | UserReviewWhereUniqueInput | UserReviewWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartCreateWithoutUserInput | CartUncheckedCreateWithoutUserInput | No |
| connectOrCreate | CartCreateOrConnectWithoutUserInput | No |
| connect | CartWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginCreateWithoutUserInput | LoginUncheckedCreateWithoutUserInput | No |
| connectOrCreate | LoginCreateOrConnectWithoutUserInput | No |
| connect | LoginWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutUserInput | UserRoleCreateWithoutUserInput[] | UserRoleUncheckedCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutUserInput | UserRoleCreateOrConnectWithoutUserInput[] | No |
| createMany | UserRoleCreateManyUserInputEnvelope | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PaymentMethodCreateWithoutUserInput | PaymentMethodCreateWithoutUserInput[] | PaymentMethodUncheckedCreateWithoutUserInput | PaymentMethodUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | PaymentMethodCreateOrConnectWithoutUserInput | PaymentMethodCreateOrConnectWithoutUserInput[] | No |
| createMany | PaymentMethodCreateManyUserInputEnvelope | No |
| connect | PaymentMethodWhereUniqueInput | PaymentMethodWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutUserInput | OrderCreateWithoutUserInput[] | OrderUncheckedCreateWithoutUserInput | OrderUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutUserInput | OrderCreateOrConnectWithoutUserInput[] | No |
| createMany | OrderCreateManyUserInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AuthenticationTokenCreateWithoutUserInput | AuthenticationTokenUncheckedCreateWithoutUserInput | No |
| connectOrCreate | AuthenticationTokenCreateOrConnectWithoutUserInput | No |
| upsert | AuthenticationTokenUpsertWithoutUserInput | No |
| disconnect | Boolean | AuthenticationTokenWhereInput | No |
| delete | Boolean | AuthenticationTokenWhereInput | No |
| connect | AuthenticationTokenWhereUniqueInput | No |
| update | AuthenticationTokenUpdateToOneWithWhereWithoutUserInput | AuthenticationTokenUpdateWithoutUserInput | AuthenticationTokenUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserProfileCreateWithoutUserInput | UserProfileUncheckedCreateWithoutUserInput | No |
| connectOrCreate | UserProfileCreateOrConnectWithoutUserInput | No |
| upsert | UserProfileUpsertWithoutUserInput | No |
| disconnect | Boolean | UserProfileWhereInput | No |
| delete | Boolean | UserProfileWhereInput | No |
| connect | UserProfileWhereUniqueInput | No |
| update | UserProfileUpdateToOneWithWhereWithoutUserInput | UserProfileUpdateWithoutUserInput | UserProfileUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartCreateWithoutUserInput | CartUncheckedCreateWithoutUserInput | No |
| connectOrCreate | CartCreateOrConnectWithoutUserInput | No |
| upsert | CartUpsertWithoutUserInput | No |
| disconnect | Boolean | CartWhereInput | No |
| delete | Boolean | CartWhereInput | No |
| connect | CartWhereUniqueInput | No |
| update | CartUpdateToOneWithWhereWithoutUserInput | CartUpdateWithoutUserInput | CartUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginCreateWithoutUserInput | LoginUncheckedCreateWithoutUserInput | No |
| connectOrCreate | LoginCreateOrConnectWithoutUserInput | No |
| upsert | LoginUpsertWithoutUserInput | No |
| disconnect | Boolean | LoginWhereInput | No |
| delete | Boolean | LoginWhereInput | No |
| connect | LoginWhereUniqueInput | No |
| update | LoginUpdateToOneWithWhereWithoutUserInput | LoginUpdateWithoutUserInput | LoginUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutUserInput | UserRoleCreateWithoutUserInput[] | UserRoleUncheckedCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutUserInput | UserRoleCreateOrConnectWithoutUserInput[] | No |
| upsert | UserRoleUpsertWithWhereUniqueWithoutUserInput | UserRoleUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | UserRoleCreateManyUserInputEnvelope | No |
| set | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| disconnect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| delete | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| update | UserRoleUpdateWithWhereUniqueWithoutUserInput | UserRoleUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | UserRoleUpdateManyWithWhereWithoutUserInput | UserRoleUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | UserRoleScalarWhereInput | UserRoleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutUserInput | OrderCreateWithoutUserInput[] | OrderUncheckedCreateWithoutUserInput | OrderUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutUserInput | OrderCreateOrConnectWithoutUserInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutUserInput | OrderUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | OrderCreateManyUserInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutUserInput | OrderUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutUserInput | OrderUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AuthenticationTokenCreateWithoutUserInput | AuthenticationTokenUncheckedCreateWithoutUserInput | No |
| connectOrCreate | AuthenticationTokenCreateOrConnectWithoutUserInput | No |
| upsert | AuthenticationTokenUpsertWithoutUserInput | No |
| disconnect | Boolean | AuthenticationTokenWhereInput | No |
| delete | Boolean | AuthenticationTokenWhereInput | No |
| connect | AuthenticationTokenWhereUniqueInput | No |
| update | AuthenticationTokenUpdateToOneWithWhereWithoutUserInput | AuthenticationTokenUpdateWithoutUserInput | AuthenticationTokenUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserProfileCreateWithoutUserInput | UserProfileUncheckedCreateWithoutUserInput | No |
| connectOrCreate | UserProfileCreateOrConnectWithoutUserInput | No |
| upsert | UserProfileUpsertWithoutUserInput | No |
| disconnect | Boolean | UserProfileWhereInput | No |
| delete | Boolean | UserProfileWhereInput | No |
| connect | UserProfileWhereUniqueInput | No |
| update | UserProfileUpdateToOneWithWhereWithoutUserInput | UserProfileUpdateWithoutUserInput | UserProfileUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartCreateWithoutUserInput | CartUncheckedCreateWithoutUserInput | No |
| connectOrCreate | CartCreateOrConnectWithoutUserInput | No |
| upsert | CartUpsertWithoutUserInput | No |
| disconnect | Boolean | CartWhereInput | No |
| delete | Boolean | CartWhereInput | No |
| connect | CartWhereUniqueInput | No |
| update | CartUpdateToOneWithWhereWithoutUserInput | CartUpdateWithoutUserInput | CartUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginCreateWithoutUserInput | LoginUncheckedCreateWithoutUserInput | No |
| connectOrCreate | LoginCreateOrConnectWithoutUserInput | No |
| upsert | LoginUpsertWithoutUserInput | No |
| disconnect | Boolean | LoginWhereInput | No |
| delete | Boolean | LoginWhereInput | No |
| connect | LoginWhereUniqueInput | No |
| update | LoginUpdateToOneWithWhereWithoutUserInput | LoginUpdateWithoutUserInput | LoginUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutUserInput | UserRoleCreateWithoutUserInput[] | UserRoleUncheckedCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutUserInput | UserRoleCreateOrConnectWithoutUserInput[] | No |
| upsert | UserRoleUpsertWithWhereUniqueWithoutUserInput | UserRoleUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | UserRoleCreateManyUserInputEnvelope | No |
| set | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| disconnect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| delete | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| update | UserRoleUpdateWithWhereUniqueWithoutUserInput | UserRoleUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | UserRoleUpdateManyWithWhereWithoutUserInput | UserRoleUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | UserRoleScalarWhereInput | UserRoleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutUserInput | OrderCreateWithoutUserInput[] | OrderUncheckedCreateWithoutUserInput | OrderUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutUserInput | OrderCreateOrConnectWithoutUserInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutUserInput | OrderUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | OrderCreateManyUserInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutUserInput | OrderUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutUserInput | OrderUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutLoginInput | UserUncheckedCreateWithoutLoginInput | No |
| connectOrCreate | UserCreateOrConnectWithoutLoginInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutLoginInput | UserUncheckedCreateWithoutLoginInput | No |
| connectOrCreate | UserCreateOrConnectWithoutLoginInput | No |
| upsert | UserUpsertWithoutLoginInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutLoginInput | UserUpdateWithoutLoginInput | UserUncheckedUpdateWithoutLoginInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAuthenticationTokenInput | UserUncheckedCreateWithoutAuthenticationTokenInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAuthenticationTokenInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAuthenticationTokenInput | UserUncheckedCreateWithoutAuthenticationTokenInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAuthenticationTokenInput | No |
| upsert | UserUpsertWithoutAuthenticationTokenInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutAuthenticationTokenInput | UserUpdateWithoutAuthenticationTokenInput | UserUncheckedUpdateWithoutAuthenticationTokenInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutProfileInput | UserUncheckedCreateWithoutProfileInput | No |
| connectOrCreate | UserCreateOrConnectWithoutProfileInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Gender | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutProfileInput | UserUncheckedCreateWithoutProfileInput | No |
| connectOrCreate | UserCreateOrConnectWithoutProfileInput | No |
| upsert | UserUpsertWithoutProfileInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutProfileInput | UserUpdateWithoutProfileInput | UserUncheckedUpdateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserProfileCreateWithoutUserAddressInput | UserProfileUncheckedCreateWithoutUserAddressInput | No |
| connectOrCreate | UserProfileCreateOrConnectWithoutUserAddressInput | No |
| connect | UserProfileWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AddressCreateWithoutUserAddressInput | AddressUncheckedCreateWithoutUserAddressInput | No |
| connectOrCreate | AddressCreateOrConnectWithoutUserAddressInput | No |
| connect | AddressWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserProfileCreateWithoutUserAddressInput | UserProfileUncheckedCreateWithoutUserAddressInput | No |
| connectOrCreate | UserProfileCreateOrConnectWithoutUserAddressInput | No |
| upsert | UserProfileUpsertWithoutUserAddressInput | No |
| connect | UserProfileWhereUniqueInput | No |
| update | UserProfileUpdateToOneWithWhereWithoutUserAddressInput | UserProfileUpdateWithoutUserAddressInput | UserProfileUncheckedUpdateWithoutUserAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AddressCreateWithoutUserAddressInput | AddressUncheckedCreateWithoutUserAddressInput | No |
| connectOrCreate | AddressCreateOrConnectWithoutUserAddressInput | No |
| upsert | AddressUpsertWithoutUserAddressInput | No |
| connect | AddressWhereUniqueInput | No |
| update | AddressUpdateToOneWithWhereWithoutUserAddressInput | AddressUpdateWithoutUserAddressInput | AddressUncheckedUpdateWithoutUserAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserAddressCreateWithoutAddressInput | UserAddressCreateWithoutAddressInput[] | UserAddressUncheckedCreateWithoutAddressInput | UserAddressUncheckedCreateWithoutAddressInput[] | No |
| connectOrCreate | UserAddressCreateOrConnectWithoutAddressInput | UserAddressCreateOrConnectWithoutAddressInput[] | No |
| createMany | UserAddressCreateManyAddressInputEnvelope | No |
| connect | UserAddressWhereUniqueInput | UserAddressWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserAddressCreateWithoutAddressInput | UserAddressCreateWithoutAddressInput[] | UserAddressUncheckedCreateWithoutAddressInput | UserAddressUncheckedCreateWithoutAddressInput[] | No |
| connectOrCreate | UserAddressCreateOrConnectWithoutAddressInput | UserAddressCreateOrConnectWithoutAddressInput[] | No |
| createMany | UserAddressCreateManyAddressInputEnvelope | No |
| connect | UserAddressWhereUniqueInput | UserAddressWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserProfileCreateWithoutSocialLinksInput | UserProfileUncheckedCreateWithoutSocialLinksInput | No |
| connectOrCreate | UserProfileCreateOrConnectWithoutSocialLinksInput | No |
| connect | UserProfileWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserProfileCreateWithoutSocialLinksInput | UserProfileUncheckedCreateWithoutSocialLinksInput | No |
| connectOrCreate | UserProfileCreateOrConnectWithoutSocialLinksInput | No |
| upsert | UserProfileUpsertWithoutSocialLinksInput | No |
| connect | UserProfileWhereUniqueInput | No |
| update | UserProfileUpdateToOneWithWhereWithoutSocialLinksInput | UserProfileUpdateWithoutSocialLinksInput | UserProfileUncheckedUpdateWithoutSocialLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAuthoredReviewsInput | UserUncheckedCreateWithoutAuthoredReviewsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAuthoredReviewsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductCreateWithoutReviewsInput | ProductUncheckedCreateWithoutReviewsInput | No |
| connectOrCreate | ProductCreateOrConnectWithoutReviewsInput | No |
| connect | ProductWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAuthoredReviewsInput | UserUncheckedCreateWithoutAuthoredReviewsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAuthoredReviewsInput | No |
| upsert | UserUpsertWithoutAuthoredReviewsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutAuthoredReviewsInput | UserUpdateWithoutAuthoredReviewsInput | UserUncheckedUpdateWithoutAuthoredReviewsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductCreateWithoutReviewsInput | ProductUncheckedCreateWithoutReviewsInput | No |
| connectOrCreate | ProductCreateOrConnectWithoutReviewsInput | No |
| upsert | ProductUpsertWithoutReviewsInput | No |
| connect | ProductWhereUniqueInput | No |
| update | ProductUpdateToOneWithWhereWithoutReviewsInput | ProductUpdateWithoutReviewsInput | ProductUncheckedUpdateWithoutReviewsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutPromotionCategoryInput | CategoryUncheckedCreateWithoutPromotionCategoryInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutPromotionCategoryInput | No |
| connect | CategoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PromotionCreateWithoutPromotionCategoryInput | PromotionUncheckedCreateWithoutPromotionCategoryInput | No |
| connectOrCreate | PromotionCreateOrConnectWithoutPromotionCategoryInput | No |
| connect | PromotionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutPromotionCategoryInput | CategoryUncheckedCreateWithoutPromotionCategoryInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutPromotionCategoryInput | No |
| upsert | CategoryUpsertWithoutPromotionCategoryInput | No |
| connect | CategoryWhereUniqueInput | No |
| update | CategoryUpdateToOneWithWhereWithoutPromotionCategoryInput | CategoryUpdateWithoutPromotionCategoryInput | CategoryUncheckedUpdateWithoutPromotionCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartItemCreateWithoutPromotionInput | CartItemUncheckedCreateWithoutPromotionInput | No |
| connectOrCreate | CartItemCreateOrConnectWithoutPromotionInput | No |
| connect | CartItemWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartItemCreateWithoutPromotionInput | CartItemUncheckedCreateWithoutPromotionInput | No |
| connectOrCreate | CartItemCreateOrConnectWithoutPromotionInput | No |
| connect | CartItemWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartItemCreateWithoutPromotionInput | CartItemUncheckedCreateWithoutPromotionInput | No |
| connectOrCreate | CartItemCreateOrConnectWithoutPromotionInput | No |
| upsert | CartItemUpsertWithoutPromotionInput | No |
| disconnect | Boolean | CartItemWhereInput | No |
| delete | Boolean | CartItemWhereInput | No |
| connect | CartItemWhereUniqueInput | No |
| update | CartItemUpdateToOneWithWhereWithoutPromotionInput | CartItemUpdateWithoutPromotionInput | CartItemUncheckedUpdateWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartItemCreateWithoutPromotionInput | CartItemUncheckedCreateWithoutPromotionInput | No |
| connectOrCreate | CartItemCreateOrConnectWithoutPromotionInput | No |
| upsert | CartItemUpsertWithoutPromotionInput | No |
| disconnect | Boolean | CartItemWhereInput | No |
| delete | Boolean | CartItemWhereInput | No |
| connect | CartItemWhereUniqueInput | No |
| update | CartItemUpdateToOneWithWhereWithoutPromotionInput | CartItemUpdateWithoutPromotionInput | CartItemUncheckedUpdateWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartCreateWithoutCartItemsInput | CartUncheckedCreateWithoutCartItemsInput | No |
| connectOrCreate | CartCreateOrConnectWithoutCartItemsInput | No |
| connect | CartWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductCreateWithoutCartItemInput | ProductUncheckedCreateWithoutCartItemInput | No |
| connectOrCreate | ProductCreateOrConnectWithoutCartItemInput | No |
| connect | ProductWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PromotionCreateWithoutCartItemInput | PromotionUncheckedCreateWithoutCartItemInput | No |
| connectOrCreate | PromotionCreateOrConnectWithoutCartItemInput | No |
| connect | PromotionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartCreateWithoutCartItemsInput | CartUncheckedCreateWithoutCartItemsInput | No |
| connectOrCreate | CartCreateOrConnectWithoutCartItemsInput | No |
| upsert | CartUpsertWithoutCartItemsInput | No |
| connect | CartWhereUniqueInput | No |
| update | CartUpdateToOneWithWhereWithoutCartItemsInput | CartUpdateWithoutCartItemsInput | CartUncheckedUpdateWithoutCartItemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductCreateWithoutCartItemInput | ProductUncheckedCreateWithoutCartItemInput | No |
| connectOrCreate | ProductCreateOrConnectWithoutCartItemInput | No |
| upsert | ProductUpsertWithoutCartItemInput | No |
| connect | ProductWhereUniqueInput | No |
| update | ProductUpdateToOneWithWhereWithoutCartItemInput | ProductUpdateWithoutCartItemInput | ProductUncheckedUpdateWithoutCartItemInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PromotionCreateWithoutCartItemInput | PromotionUncheckedCreateWithoutCartItemInput | No |
| connectOrCreate | PromotionCreateOrConnectWithoutCartItemInput | No |
| upsert | PromotionUpsertWithoutCartItemInput | No |
| disconnect | Boolean | PromotionWhereInput | No |
| delete | Boolean | PromotionWhereInput | No |
| connect | PromotionWhereUniqueInput | No |
| update | PromotionUpdateToOneWithWhereWithoutCartItemInput | PromotionUpdateWithoutCartItemInput | PromotionUncheckedUpdateWithoutCartItemInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCartInput | UserUncheckedCreateWithoutCartInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCartInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartItemCreateWithoutCartInput | CartItemCreateWithoutCartInput[] | CartItemUncheckedCreateWithoutCartInput | CartItemUncheckedCreateWithoutCartInput[] | No |
| connectOrCreate | CartItemCreateOrConnectWithoutCartInput | CartItemCreateOrConnectWithoutCartInput[] | No |
| createMany | CartItemCreateManyCartInputEnvelope | No |
| connect | CartItemWhereUniqueInput | CartItemWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartItemCreateWithoutCartInput | CartItemCreateWithoutCartInput[] | CartItemUncheckedCreateWithoutCartInput | CartItemUncheckedCreateWithoutCartInput[] | No |
| connectOrCreate | CartItemCreateOrConnectWithoutCartInput | CartItemCreateOrConnectWithoutCartInput[] | No |
| createMany | CartItemCreateManyCartInputEnvelope | No |
| connect | CartItemWhereUniqueInput | CartItemWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCartInput | UserUncheckedCreateWithoutCartInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCartInput | No |
| upsert | UserUpsertWithoutCartInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutCartInput | UserUpdateWithoutCartInput | UserUncheckedUpdateWithoutCartInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartItemCreateWithoutCartInput | CartItemCreateWithoutCartInput[] | CartItemUncheckedCreateWithoutCartInput | CartItemUncheckedCreateWithoutCartInput[] | No |
| connectOrCreate | CartItemCreateOrConnectWithoutCartInput | CartItemCreateOrConnectWithoutCartInput[] | No |
| upsert | CartItemUpsertWithWhereUniqueWithoutCartInput | CartItemUpsertWithWhereUniqueWithoutCartInput[] | No |
| createMany | CartItemCreateManyCartInputEnvelope | No |
| set | CartItemWhereUniqueInput | CartItemWhereUniqueInput[] | No |
| disconnect | CartItemWhereUniqueInput | CartItemWhereUniqueInput[] | No |
| delete | CartItemWhereUniqueInput | CartItemWhereUniqueInput[] | No |
| connect | CartItemWhereUniqueInput | CartItemWhereUniqueInput[] | No |
| update | CartItemUpdateWithWhereUniqueWithoutCartInput | CartItemUpdateWithWhereUniqueWithoutCartInput[] | No |
| updateMany | CartItemUpdateManyWithWhereWithoutCartInput | CartItemUpdateManyWithWhereWithoutCartInput[] | No |
| deleteMany | CartItemScalarWhereInput | CartItemScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CartItemCreateWithoutCartInput | CartItemCreateWithoutCartInput[] | CartItemUncheckedCreateWithoutCartInput | CartItemUncheckedCreateWithoutCartInput[] | No |
| connectOrCreate | CartItemCreateOrConnectWithoutCartInput | CartItemCreateOrConnectWithoutCartInput[] | No |
| upsert | CartItemUpsertWithWhereUniqueWithoutCartInput | CartItemUpsertWithWhereUniqueWithoutCartInput[] | No |
| createMany | CartItemCreateManyCartInputEnvelope | No |
| set | CartItemWhereUniqueInput | CartItemWhereUniqueInput[] | No |
| disconnect | CartItemWhereUniqueInput | CartItemWhereUniqueInput[] | No |
| delete | CartItemWhereUniqueInput | CartItemWhereUniqueInput[] | No |
| connect | CartItemWhereUniqueInput | CartItemWhereUniqueInput[] | No |
| update | CartItemUpdateWithWhereUniqueWithoutCartInput | CartItemUpdateWithWhereUniqueWithoutCartInput[] | No |
| updateMany | CartItemUpdateManyWithWhereWithoutCartInput | CartItemUpdateManyWithWhereWithoutCartInput[] | No |
| deleteMany | CartItemScalarWhereInput | CartItemScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutOrdersInput | UserUncheckedCreateWithoutOrdersInput | No |
| connectOrCreate | UserCreateOrConnectWithoutOrdersInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShippingDetailCreateWithoutOrderInput | ShippingDetailUncheckedCreateWithoutOrderInput | No |
| connectOrCreate | ShippingDetailCreateOrConnectWithoutOrderInput | No |
| connect | ShippingDetailWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PaymentDetailCreateWithoutOrderInput | PaymentDetailUncheckedCreateWithoutOrderInput | No |
| connectOrCreate | PaymentDetailCreateOrConnectWithoutOrderInput | No |
| connect | PaymentDetailWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderDetailCreateWithoutOrderInput | OrderDetailCreateWithoutOrderInput[] | OrderDetailUncheckedCreateWithoutOrderInput | OrderDetailUncheckedCreateWithoutOrderInput[] | No |
| connectOrCreate | OrderDetailCreateOrConnectWithoutOrderInput | OrderDetailCreateOrConnectWithoutOrderInput[] | No |
| createMany | OrderDetailCreateManyOrderInputEnvelope | No |
| connect | OrderDetailWhereUniqueInput | OrderDetailWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShippingDetailCreateWithoutOrderInput | ShippingDetailUncheckedCreateWithoutOrderInput | No |
| connectOrCreate | ShippingDetailCreateOrConnectWithoutOrderInput | No |
| connect | ShippingDetailWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PaymentDetailCreateWithoutOrderInput | PaymentDetailUncheckedCreateWithoutOrderInput | No |
| connectOrCreate | PaymentDetailCreateOrConnectWithoutOrderInput | No |
| connect | PaymentDetailWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderDetailCreateWithoutOrderInput | OrderDetailCreateWithoutOrderInput[] | OrderDetailUncheckedCreateWithoutOrderInput | OrderDetailUncheckedCreateWithoutOrderInput[] | No |
| connectOrCreate | OrderDetailCreateOrConnectWithoutOrderInput | OrderDetailCreateOrConnectWithoutOrderInput[] | No |
| createMany | OrderDetailCreateManyOrderInputEnvelope | No |
| connect | OrderDetailWhereUniqueInput | OrderDetailWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | OrderStatusType | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutOrdersInput | UserUncheckedCreateWithoutOrdersInput | No |
| connectOrCreate | UserCreateOrConnectWithoutOrdersInput | No |
| upsert | UserUpsertWithoutOrdersInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutOrdersInput | UserUpdateWithoutOrdersInput | UserUncheckedUpdateWithoutOrdersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShippingDetailCreateWithoutOrderInput | ShippingDetailUncheckedCreateWithoutOrderInput | No |
| connectOrCreate | ShippingDetailCreateOrConnectWithoutOrderInput | No |
| upsert | ShippingDetailUpsertWithoutOrderInput | No |
| disconnect | Boolean | ShippingDetailWhereInput | No |
| delete | Boolean | ShippingDetailWhereInput | No |
| connect | ShippingDetailWhereUniqueInput | No |
| update | ShippingDetailUpdateToOneWithWhereWithoutOrderInput | ShippingDetailUpdateWithoutOrderInput | ShippingDetailUncheckedUpdateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PaymentDetailCreateWithoutOrderInput | PaymentDetailUncheckedCreateWithoutOrderInput | No |
| connectOrCreate | PaymentDetailCreateOrConnectWithoutOrderInput | No |
| upsert | PaymentDetailUpsertWithoutOrderInput | No |
| disconnect | Boolean | PaymentDetailWhereInput | No |
| delete | Boolean | PaymentDetailWhereInput | No |
| connect | PaymentDetailWhereUniqueInput | No |
| update | PaymentDetailUpdateToOneWithWhereWithoutOrderInput | PaymentDetailUpdateWithoutOrderInput | PaymentDetailUncheckedUpdateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShippingDetailCreateWithoutOrderInput | ShippingDetailUncheckedCreateWithoutOrderInput | No |
| connectOrCreate | ShippingDetailCreateOrConnectWithoutOrderInput | No |
| upsert | ShippingDetailUpsertWithoutOrderInput | No |
| disconnect | Boolean | ShippingDetailWhereInput | No |
| delete | Boolean | ShippingDetailWhereInput | No |
| connect | ShippingDetailWhereUniqueInput | No |
| update | ShippingDetailUpdateToOneWithWhereWithoutOrderInput | ShippingDetailUpdateWithoutOrderInput | ShippingDetailUncheckedUpdateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PaymentDetailCreateWithoutOrderInput | PaymentDetailUncheckedCreateWithoutOrderInput | No |
| connectOrCreate | PaymentDetailCreateOrConnectWithoutOrderInput | No |
| upsert | PaymentDetailUpsertWithoutOrderInput | No |
| disconnect | Boolean | PaymentDetailWhereInput | No |
| delete | Boolean | PaymentDetailWhereInput | No |
| connect | PaymentDetailWhereUniqueInput | No |
| update | PaymentDetailUpdateToOneWithWhereWithoutOrderInput | PaymentDetailUpdateWithoutOrderInput | PaymentDetailUncheckedUpdateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductCreateWithoutOrderDetailInput | ProductUncheckedCreateWithoutOrderDetailInput | No |
| connectOrCreate | ProductCreateOrConnectWithoutOrderDetailInput | No |
| connect | ProductWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderDetailInput | OrderUncheckedCreateWithoutOrderDetailInput | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderDetailInput | No |
| connect | OrderWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProductCreateWithoutOrderDetailInput | ProductUncheckedCreateWithoutOrderDetailInput | No |
| connectOrCreate | ProductCreateOrConnectWithoutOrderDetailInput | No |
| upsert | ProductUpsertWithoutOrderDetailInput | No |
| connect | ProductWhereUniqueInput | No |
| update | ProductUpdateToOneWithWhereWithoutOrderDetailInput | ProductUpdateWithoutOrderDetailInput | ProductUncheckedUpdateWithoutOrderDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderDetailInput | OrderUncheckedCreateWithoutOrderDetailInput | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderDetailInput | No |
| upsert | OrderUpsertWithoutOrderDetailInput | No |
| connect | OrderWhereUniqueInput | No |
| update | OrderUpdateToOneWithWhereWithoutOrderDetailInput | OrderUpdateWithoutOrderDetailInput | OrderUncheckedUpdateWithoutOrderDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AddressCreateWithoutPaymentDetailInput | AddressUncheckedCreateWithoutPaymentDetailInput | No |
| connectOrCreate | AddressCreateOrConnectWithoutPaymentDetailInput | No |
| connect | AddressWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutPaymentDetailInput | OrderUncheckedCreateWithoutPaymentDetailInput | No |
| connectOrCreate | OrderCreateOrConnectWithoutPaymentDetailInput | No |
| connect | OrderWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AddressCreateWithoutPaymentDetailInput | AddressUncheckedCreateWithoutPaymentDetailInput | No |
| connectOrCreate | AddressCreateOrConnectWithoutPaymentDetailInput | No |
| upsert | AddressUpsertWithoutPaymentDetailInput | No |
| connect | AddressWhereUniqueInput | No |
| update | AddressUpdateToOneWithWhereWithoutPaymentDetailInput | AddressUpdateWithoutPaymentDetailInput | AddressUncheckedUpdateWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutPaymentDetailInput | OrderUncheckedCreateWithoutPaymentDetailInput | No |
| connectOrCreate | OrderCreateOrConnectWithoutPaymentDetailInput | No |
| upsert | OrderUpsertWithoutPaymentDetailInput | No |
| connect | OrderWhereUniqueInput | No |
| update | OrderUpdateToOneWithWhereWithoutPaymentDetailInput | OrderUpdateWithoutPaymentDetailInput | OrderUncheckedUpdateWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | PaymentType | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPaymentMethodInput | UserUncheckedCreateWithoutPaymentMethodInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPaymentMethodInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PaymentDetailCreateWithoutPaymentMethodInput | PaymentDetailUncheckedCreateWithoutPaymentMethodInput | No |
| connectOrCreate | PaymentDetailCreateOrConnectWithoutPaymentMethodInput | No |
| connect | PaymentDetailWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PaymentOptionCreateWithoutPaymentMethodInput | PaymentOptionUncheckedCreateWithoutPaymentMethodInput | No |
| connectOrCreate | PaymentOptionCreateOrConnectWithoutPaymentMethodInput | No |
| connect | PaymentOptionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPaymentMethodInput | UserUncheckedCreateWithoutPaymentMethodInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPaymentMethodInput | No |
| upsert | UserUpsertWithoutPaymentMethodInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutPaymentMethodInput | UserUpdateWithoutPaymentMethodInput | UserUncheckedUpdateWithoutPaymentMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AddressCreateWithoutShippingDetailInput | AddressUncheckedCreateWithoutShippingDetailInput | No |
| connectOrCreate | AddressCreateOrConnectWithoutShippingDetailInput | No |
| connect | AddressWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShippingMethodCreateWithoutShippingDetailInput | ShippingMethodUncheckedCreateWithoutShippingDetailInput | No |
| connectOrCreate | ShippingMethodCreateOrConnectWithoutShippingDetailInput | No |
| connect | ShippingMethodWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutShippingDetailInput | OrderUncheckedCreateWithoutShippingDetailInput | No |
| connectOrCreate | OrderCreateOrConnectWithoutShippingDetailInput | No |
| connect | OrderWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AddressCreateWithoutShippingDetailInput | AddressUncheckedCreateWithoutShippingDetailInput | No |
| connectOrCreate | AddressCreateOrConnectWithoutShippingDetailInput | No |
| upsert | AddressUpsertWithoutShippingDetailInput | No |
| connect | AddressWhereUniqueInput | No |
| update | AddressUpdateToOneWithWhereWithoutShippingDetailInput | AddressUpdateWithoutShippingDetailInput | AddressUncheckedUpdateWithoutShippingDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutShippingDetailInput | OrderUncheckedCreateWithoutShippingDetailInput | No |
| connectOrCreate | OrderCreateOrConnectWithoutShippingDetailInput | No |
| upsert | OrderUpsertWithoutShippingDetailInput | No |
| connect | OrderWhereUniqueInput | No |
| update | OrderUpdateToOneWithWhereWithoutShippingDetailInput | OrderUpdateWithoutShippingDetailInput | OrderUncheckedUpdateWithoutShippingDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutRolesInput | UserUncheckedCreateWithoutRolesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutRolesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutUsersInput | RoleUncheckedCreateWithoutUsersInput | No |
| connectOrCreate | RoleCreateOrConnectWithoutUsersInput | No |
| connect | RoleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutRolesInput | UserUncheckedCreateWithoutRolesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutRolesInput | No |
| upsert | UserUpsertWithoutRolesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutRolesInput | UserUpdateWithoutRolesInput | UserUncheckedUpdateWithoutRolesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutUsersInput | RoleUncheckedCreateWithoutUsersInput | No |
| connectOrCreate | RoleCreateOrConnectWithoutUsersInput | No |
| upsert | RoleUpsertWithoutUsersInput | No |
| connect | RoleWhereUniqueInput | No |
| update | RoleUpdateToOneWithWhereWithoutUsersInput | RoleUpdateWithoutUsersInput | RoleUncheckedUpdateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutRoleInput | UserRoleCreateWithoutRoleInput[] | UserRoleUncheckedCreateWithoutRoleInput | UserRoleUncheckedCreateWithoutRoleInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutRoleInput | UserRoleCreateOrConnectWithoutRoleInput[] | No |
| createMany | UserRoleCreateManyRoleInputEnvelope | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RolePermissionCreateWithoutRoleInput | RolePermissionCreateWithoutRoleInput[] | RolePermissionUncheckedCreateWithoutRoleInput | RolePermissionUncheckedCreateWithoutRoleInput[] | No |
| connectOrCreate | RolePermissionCreateOrConnectWithoutRoleInput | RolePermissionCreateOrConnectWithoutRoleInput[] | No |
| createMany | RolePermissionCreateManyRoleInputEnvelope | No |
| connect | RolePermissionWhereUniqueInput | RolePermissionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutRoleInput | UserRoleCreateWithoutRoleInput[] | UserRoleUncheckedCreateWithoutRoleInput | UserRoleUncheckedCreateWithoutRoleInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutRoleInput | UserRoleCreateOrConnectWithoutRoleInput[] | No |
| createMany | UserRoleCreateManyRoleInputEnvelope | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RolePermissionCreateWithoutRoleInput | RolePermissionCreateWithoutRoleInput[] | RolePermissionUncheckedCreateWithoutRoleInput | RolePermissionUncheckedCreateWithoutRoleInput[] | No |
| connectOrCreate | RolePermissionCreateOrConnectWithoutRoleInput | RolePermissionCreateOrConnectWithoutRoleInput[] | No |
| createMany | RolePermissionCreateManyRoleInputEnvelope | No |
| connect | RolePermissionWhereUniqueInput | RolePermissionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutRoleInput | UserRoleCreateWithoutRoleInput[] | UserRoleUncheckedCreateWithoutRoleInput | UserRoleUncheckedCreateWithoutRoleInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutRoleInput | UserRoleCreateOrConnectWithoutRoleInput[] | No |
| upsert | UserRoleUpsertWithWhereUniqueWithoutRoleInput | UserRoleUpsertWithWhereUniqueWithoutRoleInput[] | No |
| createMany | UserRoleCreateManyRoleInputEnvelope | No |
| set | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| disconnect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| delete | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| update | UserRoleUpdateWithWhereUniqueWithoutRoleInput | UserRoleUpdateWithWhereUniqueWithoutRoleInput[] | No |
| updateMany | UserRoleUpdateManyWithWhereWithoutRoleInput | UserRoleUpdateManyWithWhereWithoutRoleInput[] | No |
| deleteMany | UserRoleScalarWhereInput | UserRoleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutRoleInput | UserRoleCreateWithoutRoleInput[] | UserRoleUncheckedCreateWithoutRoleInput | UserRoleUncheckedCreateWithoutRoleInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutRoleInput | UserRoleCreateOrConnectWithoutRoleInput[] | No |
| upsert | UserRoleUpsertWithWhereUniqueWithoutRoleInput | UserRoleUpsertWithWhereUniqueWithoutRoleInput[] | No |
| createMany | UserRoleCreateManyRoleInputEnvelope | No |
| set | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| disconnect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| delete | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| update | UserRoleUpdateWithWhereUniqueWithoutRoleInput | UserRoleUpdateWithWhereUniqueWithoutRoleInput[] | No |
| updateMany | UserRoleUpdateManyWithWhereWithoutRoleInput | UserRoleUpdateManyWithWhereWithoutRoleInput[] | No |
| deleteMany | UserRoleScalarWhereInput | UserRoleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutPermissionsInput | RoleUncheckedCreateWithoutPermissionsInput | No |
| connectOrCreate | RoleCreateOrConnectWithoutPermissionsInput | No |
| connect | RoleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PermissionCreateWithoutRolesInput | PermissionUncheckedCreateWithoutRolesInput | No |
| connectOrCreate | PermissionCreateOrConnectWithoutRolesInput | No |
| connect | PermissionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutPermissionsInput | RoleUncheckedCreateWithoutPermissionsInput | No |
| connectOrCreate | RoleCreateOrConnectWithoutPermissionsInput | No |
| upsert | RoleUpsertWithoutPermissionsInput | No |
| connect | RoleWhereUniqueInput | No |
| update | RoleUpdateToOneWithWhereWithoutPermissionsInput | RoleUpdateWithoutPermissionsInput | RoleUncheckedUpdateWithoutPermissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PermissionCreateWithoutRolesInput | PermissionUncheckedCreateWithoutRolesInput | No |
| connectOrCreate | PermissionCreateOrConnectWithoutRolesInput | No |
| upsert | PermissionUpsertWithoutRolesInput | No |
| connect | PermissionWhereUniqueInput | No |
| update | PermissionUpdateToOneWithWhereWithoutRolesInput | PermissionUpdateWithoutRolesInput | PermissionUncheckedUpdateWithoutRolesInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | AccessType | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Grade | EnumGradeFieldRefInput | Null | Yes |
| in | Grade[] | ListEnumGradeFieldRefInput | Null | Yes |
| notIn | Grade[] | ListEnumGradeFieldRefInput | Null | Yes |
| not | Grade | NestedEnumGradeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | DecimalFieldRefInput | No |
| in | Decimal[] | ListDecimalFieldRefInput | No |
| notIn | Decimal[] | ListDecimalFieldRefInput | No |
| lt | Decimal | DecimalFieldRefInput | No |
| lte | Decimal | DecimalFieldRefInput | No |
| gt | Decimal | DecimalFieldRefInput | No |
| gte | Decimal | DecimalFieldRefInput | No |
| not | Decimal | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | DecimalFieldRefInput | Null | Yes |
| in | Decimal[] | ListDecimalFieldRefInput | Null | Yes |
| notIn | Decimal[] | ListDecimalFieldRefInput | Null | Yes |
| lt | Decimal | DecimalFieldRefInput | No |
| lte | Decimal | DecimalFieldRefInput | No |
| gt | Decimal | DecimalFieldRefInput | No |
| gte | Decimal | DecimalFieldRefInput | No |
| not | Decimal | NestedDecimalNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Grade | EnumGradeFieldRefInput | Null | Yes |
| in | Grade[] | ListEnumGradeFieldRefInput | Null | Yes |
| notIn | Grade[] | ListEnumGradeFieldRefInput | Null | Yes |
| not | Grade | NestedEnumGradeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumGradeNullableFilter | No |
| _max | NestedEnumGradeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | DecimalFieldRefInput | No |
| in | Decimal[] | ListDecimalFieldRefInput | No |
| notIn | Decimal[] | ListDecimalFieldRefInput | No |
| lt | Decimal | DecimalFieldRefInput | No |
| lte | Decimal | DecimalFieldRefInput | No |
| gt | Decimal | DecimalFieldRefInput | No |
| gte | Decimal | DecimalFieldRefInput | No |
| not | Decimal | NestedDecimalWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedDecimalFilter | No |
| _sum | NestedDecimalFilter | No |
| _min | NestedDecimalFilter | No |
| _max | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | DecimalFieldRefInput | Null | Yes |
| in | Decimal[] | ListDecimalFieldRefInput | Null | Yes |
| notIn | Decimal[] | ListDecimalFieldRefInput | Null | Yes |
| lt | Decimal | DecimalFieldRefInput | No |
| lte | Decimal | DecimalFieldRefInput | No |
| gt | Decimal | DecimalFieldRefInput | No |
| gte | Decimal | DecimalFieldRefInput | No |
| not | Decimal | NestedDecimalNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedDecimalNullableFilter | No |
| _sum | NestedDecimalNullableFilter | No |
| _min | NestedDecimalNullableFilter | No |
| _max | NestedDecimalNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | InventoryStatus | EnumInventoryStatusFieldRefInput | No |
| in | InventoryStatus[] | ListEnumInventoryStatusFieldRefInput | No |
| notIn | InventoryStatus[] | ListEnumInventoryStatusFieldRefInput | No |
| not | InventoryStatus | NestedEnumInventoryStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | InventoryStatus | EnumInventoryStatusFieldRefInput | No |
| in | InventoryStatus[] | ListEnumInventoryStatusFieldRefInput | No |
| notIn | InventoryStatus[] | ListEnumInventoryStatusFieldRefInput | No |
| not | InventoryStatus | NestedEnumInventoryStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumInventoryStatusFilter | No |
| _max | NestedEnumInventoryStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Gender | EnumGenderFieldRefInput | Null | Yes |
| in | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| notIn | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| not | Gender | NestedEnumGenderNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Gender | EnumGenderFieldRefInput | Null | Yes |
| in | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| notIn | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| not | Gender | NestedEnumGenderNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumGenderNullableFilter | No |
| _max | NestedEnumGenderNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrderStatusType | EnumOrderStatusTypeFieldRefInput | No |
| in | OrderStatusType[] | ListEnumOrderStatusTypeFieldRefInput | No |
| notIn | OrderStatusType[] | ListEnumOrderStatusTypeFieldRefInput | No |
| not | OrderStatusType | NestedEnumOrderStatusTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrderStatusType | EnumOrderStatusTypeFieldRefInput | No |
| in | OrderStatusType[] | ListEnumOrderStatusTypeFieldRefInput | No |
| notIn | OrderStatusType[] | ListEnumOrderStatusTypeFieldRefInput | No |
| not | OrderStatusType | NestedEnumOrderStatusTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumOrderStatusTypeFilter | No |
| _max | NestedEnumOrderStatusTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PaymentType | EnumPaymentTypeFieldRefInput | No |
| in | PaymentType[] | ListEnumPaymentTypeFieldRefInput | No |
| notIn | PaymentType[] | ListEnumPaymentTypeFieldRefInput | No |
| not | PaymentType | NestedEnumPaymentTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PaymentType | EnumPaymentTypeFieldRefInput | No |
| in | PaymentType[] | ListEnumPaymentTypeFieldRefInput | No |
| notIn | PaymentType[] | ListEnumPaymentTypeFieldRefInput | No |
| not | PaymentType | NestedEnumPaymentTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPaymentTypeFilter | No |
| _max | NestedEnumPaymentTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AccessType | EnumAccessTypeFieldRefInput | No |
| in | AccessType[] | ListEnumAccessTypeFieldRefInput | No |
| notIn | AccessType[] | ListEnumAccessTypeFieldRefInput | No |
| not | AccessType | NestedEnumAccessTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AccessType | EnumAccessTypeFieldRefInput | No |
| in | AccessType[] | ListEnumAccessTypeFieldRefInput | No |
| notIn | AccessType[] | ListEnumAccessTypeFieldRefInput | No |
| not | AccessType | NestedEnumAccessTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAccessTypeFilter | No |
| _max | NestedEnumAccessTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| parentCategory | CategoryCreateNestedOneWithoutChildCategoriesInput | No |
| childCategories | CategoryCreateNestedManyWithoutParentCategoryInput | No |
| promotionCategory | PromotionCategoryCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| parentCategoryId | Int | Null | Yes |
| childCategories | CategoryUncheckedCreateNestedManyWithoutParentCategoryInput | No |
| promotionCategory | PromotionCategoryUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutProductInput | CategoryUncheckedCreateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| quantity | Int | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| order | OrderCreateNestedOneWithoutOrderDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| orderId | String | No |
| quantity | Int | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderDetailWhereUniqueInput | No |
| create | OrderDetailCreateWithoutProductInput | OrderDetailUncheckedCreateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrderDetailCreateManyProductInput | OrderDetailCreateManyProductInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| cart | CartCreateNestedOneWithoutCartItemsInput | No |
| Promotion | PromotionCreateNestedOneWithoutCartItemInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| cartId | Int | No |
| quantity | Int | No |
| promotionId | Int | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartItemWhereUniqueInput | No |
| create | CartItemCreateWithoutProductInput | CartItemUncheckedCreateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CartItemCreateManyProductInput | CartItemCreateManyProductInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | No |
| reStockLevel | Int | Null | Yes |
| status | InventoryStatus | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| quantity | Int | No |
| reStockLevel | Int | Null | Yes |
| status | InventoryStatus | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductInventoryWhereUniqueInput | No |
| create | ProductInventoryCreateWithoutProductInput | ProductInventoryUncheckedCreateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ProductInventoryCreateManyProductInput | ProductInventoryCreateManyProductInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| imageUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| imageUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductImageWhereUniqueInput | No |
| create | ProductImageCreateWithoutProductInput | ProductImageUncheckedCreateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ProductImageCreateManyProductInput | ProductImageCreateManyProductInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | No |
| message | String | No |
| rating | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| author | UserCreateNestedOneWithoutAuthoredReviewsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| title | String | No |
| message | String | No |
| rating | Int | No |
| authorId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserReviewWhereUniqueInput | No |
| create | UserReviewCreateWithoutProductInput | UserReviewUncheckedCreateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserReviewCreateManyProductInput | UserReviewCreateManyProductInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | CategoryUpdateWithoutProductInput | CategoryUncheckedUpdateWithoutProductInput | No |
| create | CategoryCreateWithoutProductInput | CategoryUncheckedCreateWithoutProductInput | No |
| where | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereInput | No |
| data | CategoryUpdateWithoutProductInput | CategoryUncheckedUpdateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| categoryName | String | StringFieldUpdateOperationsInput | No |
| categoryDesc | String | StringFieldUpdateOperationsInput | No |
| slug | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentCategory | CategoryUpdateOneWithoutChildCategoriesNestedInput | No |
| childCategories | CategoryUpdateManyWithoutParentCategoryNestedInput | No |
| promotionCategory | PromotionCategoryUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| categoryName | String | StringFieldUpdateOperationsInput | No |
| categoryDesc | String | StringFieldUpdateOperationsInput | No |
| slug | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentCategoryId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| childCategories | CategoryUncheckedUpdateManyWithoutParentCategoryNestedInput | No |
| promotionCategory | PromotionCategoryUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderDetailWhereUniqueInput | No |
| update | OrderDetailUpdateWithoutProductInput | OrderDetailUncheckedUpdateWithoutProductInput | No |
| create | OrderDetailCreateWithoutProductInput | OrderDetailUncheckedCreateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderDetailWhereUniqueInput | No |
| data | OrderDetailUpdateWithoutProductInput | OrderDetailUncheckedUpdateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderDetailScalarWhereInput | No |
| data | OrderDetailUpdateManyMutationInput | OrderDetailUncheckedUpdateManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderDetailScalarWhereInput | OrderDetailScalarWhereInput[] | No |
| OR | OrderDetailScalarWhereInput[] | No |
| NOT | OrderDetailScalarWhereInput | OrderDetailScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| orderId | StringFilter | String | No |
| productId | IntFilter | Int | No |
| quantity | IntFilter | Int | No |
| total | DecimalFilter | Decimal | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartItemWhereUniqueInput | No |
| update | CartItemUpdateWithoutProductInput | CartItemUncheckedUpdateWithoutProductInput | No |
| create | CartItemCreateWithoutProductInput | CartItemUncheckedCreateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartItemWhereUniqueInput | No |
| data | CartItemUpdateWithoutProductInput | CartItemUncheckedUpdateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartItemScalarWhereInput | No |
| data | CartItemUpdateManyMutationInput | CartItemUncheckedUpdateManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CartItemScalarWhereInput | CartItemScalarWhereInput[] | No |
| OR | CartItemScalarWhereInput[] | No |
| NOT | CartItemScalarWhereInput | CartItemScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| cartId | IntFilter | Int | No |
| productId | IntFilter | Int | No |
| quantity | IntFilter | Int | No |
| promotionId | IntNullableFilter | Int | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductInventoryWhereUniqueInput | No |
| update | ProductInventoryUpdateWithoutProductInput | ProductInventoryUncheckedUpdateWithoutProductInput | No |
| create | ProductInventoryCreateWithoutProductInput | ProductInventoryUncheckedCreateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductInventoryWhereUniqueInput | No |
| data | ProductInventoryUpdateWithoutProductInput | ProductInventoryUncheckedUpdateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductInventoryScalarWhereInput | No |
| data | ProductInventoryUpdateManyMutationInput | ProductInventoryUncheckedUpdateManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ProductInventoryScalarWhereInput | ProductInventoryScalarWhereInput[] | No |
| OR | ProductInventoryScalarWhereInput[] | No |
| NOT | ProductInventoryScalarWhereInput | ProductInventoryScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| quantity | IntFilter | Int | No |
| reStockLevel | IntNullableFilter | Int | Null | Yes |
| status | EnumInventoryStatusFilter | InventoryStatus | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| productId | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductImageWhereUniqueInput | No |
| update | ProductImageUpdateWithoutProductInput | ProductImageUncheckedUpdateWithoutProductInput | No |
| create | ProductImageCreateWithoutProductInput | ProductImageUncheckedCreateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductImageWhereUniqueInput | No |
| data | ProductImageUpdateWithoutProductInput | ProductImageUncheckedUpdateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductImageScalarWhereInput | No |
| data | ProductImageUpdateManyMutationInput | ProductImageUncheckedUpdateManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ProductImageScalarWhereInput | ProductImageScalarWhereInput[] | No |
| OR | ProductImageScalarWhereInput[] | No |
| NOT | ProductImageScalarWhereInput | ProductImageScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| imageUrl | StringFilter | String | No |
| productId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserReviewWhereUniqueInput | No |
| update | UserReviewUpdateWithoutProductInput | UserReviewUncheckedUpdateWithoutProductInput | No |
| create | UserReviewCreateWithoutProductInput | UserReviewUncheckedCreateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserReviewWhereUniqueInput | No |
| data | UserReviewUpdateWithoutProductInput | UserReviewUncheckedUpdateWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserReviewScalarWhereInput | No |
| data | UserReviewUpdateManyMutationInput | UserReviewUncheckedUpdateManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserReviewScalarWhereInput | UserReviewScalarWhereInput[] | No |
| OR | UserReviewScalarWhereInput[] | No |
| NOT | UserReviewScalarWhereInput | UserReviewScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| title | StringFilter | String | No |
| message | StringFilter | String | No |
| rating | IntFilter | Int | No |
| authorId | IntFilter | Int | No |
| productId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| parentCategory | CategoryCreateNestedOneWithoutChildCategoriesInput | No |
| product | ProductCreateNestedManyWithoutCategoryInput | No |
| promotionCategory | PromotionCategoryCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| parentCategoryId | Int | Null | Yes |
| product | ProductUncheckedCreateNestedManyWithoutCategoryInput | No |
| promotionCategory | PromotionCategoryUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutChildCategoriesInput | CategoryUncheckedCreateWithoutChildCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| childCategories | CategoryCreateNestedManyWithoutParentCategoryInput | No |
| product | ProductCreateNestedManyWithoutCategoryInput | No |
| promotionCategory | PromotionCategoryCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| childCategories | CategoryUncheckedCreateNestedManyWithoutParentCategoryInput | No |
| product | ProductUncheckedCreateNestedManyWithoutCategoryInput | No |
| promotionCategory | PromotionCategoryUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutParentCategoryInput | CategoryUncheckedCreateWithoutParentCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CategoryCreateManyParentCategoryInput | CategoryCreateManyParentCategoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| orderDetail | OrderDetailCreateNestedManyWithoutProductInput | No |
| cartItem | CartItemCreateNestedManyWithoutProductInput | No |
| productInventory | ProductInventoryCreateNestedManyWithoutProductInput | No |
| productImage | ProductImageCreateNestedManyWithoutProductInput | No |
| reviews | UserReviewCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| orderDetail | OrderDetailUncheckedCreateNestedManyWithoutProductInput | No |
| cartItem | CartItemUncheckedCreateNestedManyWithoutProductInput | No |
| productInventory | ProductInventoryUncheckedCreateNestedManyWithoutProductInput | No |
| productImage | ProductImageUncheckedCreateNestedManyWithoutProductInput | No |
| reviews | UserReviewUncheckedCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductWhereUniqueInput | No |
| create | ProductCreateWithoutCategoryInput | ProductUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ProductCreateManyCategoryInput | ProductCreateManyCategoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| promotion | PromotionCreateNestedOneWithoutPromotionCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| promotionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionCategoryWhereUniqueInput | No |
| create | PromotionCategoryCreateWithoutCategoryInput | PromotionCategoryUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PromotionCategoryCreateManyCategoryInput | PromotionCategoryCreateManyCategoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | CategoryUpdateWithoutChildCategoriesInput | CategoryUncheckedUpdateWithoutChildCategoriesInput | No |
| create | CategoryCreateWithoutChildCategoriesInput | CategoryUncheckedCreateWithoutChildCategoriesInput | No |
| where | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereInput | No |
| data | CategoryUpdateWithoutChildCategoriesInput | CategoryUncheckedUpdateWithoutChildCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| categoryName | String | StringFieldUpdateOperationsInput | No |
| categoryDesc | String | StringFieldUpdateOperationsInput | No |
| slug | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentCategory | CategoryUpdateOneWithoutChildCategoriesNestedInput | No |
| product | ProductUpdateManyWithoutCategoryNestedInput | No |
| promotionCategory | PromotionCategoryUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| categoryName | String | StringFieldUpdateOperationsInput | No |
| categoryDesc | String | StringFieldUpdateOperationsInput | No |
| slug | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentCategoryId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| product | ProductUncheckedUpdateManyWithoutCategoryNestedInput | No |
| promotionCategory | PromotionCategoryUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| update | CategoryUpdateWithoutParentCategoryInput | CategoryUncheckedUpdateWithoutParentCategoryInput | No |
| create | CategoryCreateWithoutParentCategoryInput | CategoryUncheckedCreateWithoutParentCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| data | CategoryUpdateWithoutParentCategoryInput | CategoryUncheckedUpdateWithoutParentCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryScalarWhereInput | No |
| data | CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyWithoutParentCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryScalarWhereInput | CategoryScalarWhereInput[] | No |
| OR | CategoryScalarWhereInput[] | No |
| NOT | CategoryScalarWhereInput | CategoryScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| categoryName | StringFilter | String | No |
| categoryDesc | StringFilter | String | No |
| slug | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| parentCategoryId | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ProductWhereUniqueInput | No |
| update | ProductUpdateWithoutCategoryInput | ProductUncheckedUpdateWithoutCategoryInput | No |
| create | ProductCreateWithoutCategoryInput | ProductUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductWhereUniqueInput | No |
| data | ProductUpdateWithoutCategoryInput | ProductUncheckedUpdateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductScalarWhereInput | No |
| data | ProductUpdateManyMutationInput | ProductUncheckedUpdateManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ProductScalarWhereInput | ProductScalarWhereInput[] | No |
| OR | ProductScalarWhereInput[] | No |
| NOT | ProductScalarWhereInput | ProductScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| productName | StringFilter | String | No |
| productDesc | StringFilter | String | No |
| shortDesc | StringNullableFilter | String | Null | Yes |
| grade | EnumGradeNullableFilter | Grade | Null | Yes |
| sku | StringNullableFilter | String | Null | Yes |
| price | DecimalFilter | Decimal | No |
| msrp | DecimalNullableFilter | Decimal | Null | Yes |
| size | StringNullableFilter | String | Null | Yes |
| weight | DecimalNullableFilter | Decimal | Null | Yes |
| weightUnit | StringNullableFilter | String | Null | Yes |
| features | JsonNullableFilter | No |
| quantity | IntNullableFilter | Int | Null | Yes |
| soldQuantity | IntNullableFilter | Int | Null | Yes |
| isActive | BoolNullableFilter | Boolean | Null | Yes |
| isAvailable | BoolNullableFilter | Boolean | Null | Yes |
| slug | StringNullableFilter | String | Null | Yes |
| imageUrl | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| categoryId | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionCategoryWhereUniqueInput | No |
| update | PromotionCategoryUpdateWithoutCategoryInput | PromotionCategoryUncheckedUpdateWithoutCategoryInput | No |
| create | PromotionCategoryCreateWithoutCategoryInput | PromotionCategoryUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionCategoryWhereUniqueInput | No |
| data | PromotionCategoryUpdateWithoutCategoryInput | PromotionCategoryUncheckedUpdateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionCategoryScalarWhereInput | No |
| data | PromotionCategoryUpdateManyMutationInput | PromotionCategoryUncheckedUpdateManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PromotionCategoryScalarWhereInput | PromotionCategoryScalarWhereInput[] | No |
| OR | PromotionCategoryScalarWhereInput[] | No |
| NOT | PromotionCategoryScalarWhereInput | PromotionCategoryScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| categoryId | IntFilter | Int | No |
| promotionId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| category | CategoryCreateNestedOneWithoutProductInput | No |
| orderDetail | OrderDetailCreateNestedManyWithoutProductInput | No |
| cartItem | CartItemCreateNestedManyWithoutProductInput | No |
| productImage | ProductImageCreateNestedManyWithoutProductInput | No |
| reviews | UserReviewCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| categoryId | Int | No |
| orderDetail | OrderDetailUncheckedCreateNestedManyWithoutProductInput | No |
| cartItem | CartItemUncheckedCreateNestedManyWithoutProductInput | No |
| productImage | ProductImageUncheckedCreateNestedManyWithoutProductInput | No |
| reviews | UserReviewUncheckedCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductWhereUniqueInput | No |
| create | ProductCreateWithoutProductInventoryInput | ProductUncheckedCreateWithoutProductInventoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ProductUpdateWithoutProductInventoryInput | ProductUncheckedUpdateWithoutProductInventoryInput | No |
| create | ProductCreateWithoutProductInventoryInput | ProductUncheckedCreateWithoutProductInventoryInput | No |
| where | ProductWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductWhereInput | No |
| data | ProductUpdateWithoutProductInventoryInput | ProductUncheckedUpdateWithoutProductInventoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| category | CategoryCreateNestedOneWithoutProductInput | No |
| orderDetail | OrderDetailCreateNestedManyWithoutProductInput | No |
| cartItem | CartItemCreateNestedManyWithoutProductInput | No |
| productInventory | ProductInventoryCreateNestedManyWithoutProductInput | No |
| reviews | UserReviewCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| categoryId | Int | No |
| orderDetail | OrderDetailUncheckedCreateNestedManyWithoutProductInput | No |
| cartItem | CartItemUncheckedCreateNestedManyWithoutProductInput | No |
| productInventory | ProductInventoryUncheckedCreateNestedManyWithoutProductInput | No |
| reviews | UserReviewUncheckedCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductWhereUniqueInput | No |
| create | ProductCreateWithoutProductImageInput | ProductUncheckedCreateWithoutProductImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ProductUpdateWithoutProductImageInput | ProductUncheckedUpdateWithoutProductImageInput | No |
| create | ProductCreateWithoutProductImageInput | ProductUncheckedCreateWithoutProductImageInput | No |
| where | ProductWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductWhereInput | No |
| data | ProductUpdateWithoutProductImageInput | ProductUncheckedUpdateWithoutProductImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| token | String | No |
| expiry | DateTime | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| token | String | No |
| expiry | DateTime | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | AuthenticationTokenWhereUniqueInput | No |
| create | AuthenticationTokenCreateWithoutUserInput | AuthenticationTokenUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| phone | String | Null | Yes |
| birthDate | DateTime | Null | Yes |
| gender | Gender | Null | Yes |
| photo | String | Null | Yes |
| bio | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userAddress | UserAddressCreateNestedManyWithoutUserProfileInput | No |
| socialLinks | SocialLinkCreateNestedManyWithoutUserProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| phone | String | Null | Yes |
| birthDate | DateTime | Null | Yes |
| gender | Gender | Null | Yes |
| photo | String | Null | Yes |
| bio | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userAddress | UserAddressUncheckedCreateNestedManyWithoutUserProfileInput | No |
| socialLinks | SocialLinkUncheckedCreateNestedManyWithoutUserProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserProfileWhereUniqueInput | No |
| create | UserProfileCreateWithoutUserInput | UserProfileUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | No |
| message | String | No |
| rating | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| product | ProductCreateNestedOneWithoutReviewsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| title | String | No |
| message | String | No |
| rating | Int | No |
| productId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserReviewWhereUniqueInput | No |
| create | UserReviewCreateWithoutAuthorInput | UserReviewUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserReviewCreateManyAuthorInput | UserReviewCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| cartItems | CartItemCreateNestedManyWithoutCartInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| cartItems | CartItemUncheckedCreateNestedManyWithoutCartInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartWhereUniqueInput | No |
| create | CartCreateWithoutUserInput | CartUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| username | String | No |
| password | String | No |
| failedAttempts | Int | No |
| lockoutTime | DateTime | Null | Yes |
| lastLogin | DateTime | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| username | String | No |
| password | String | No |
| failedAttempts | Int | No |
| lockoutTime | DateTime | Null | Yes |
| lastLogin | DateTime | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginWhereUniqueInput | No |
| create | LoginCreateWithoutUserInput | LoginUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| role | RoleCreateNestedOneWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| roleId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleWhereUniqueInput | No |
| create | UserRoleCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserRoleCreateManyUserInput | UserRoleCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| cardProvider | String | Null | Yes |
| nameOnCard | String | Null | Yes |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| paymentDetail | PaymentDetailCreateNestedOneWithoutPaymentMethodInput | No |
| paymentOption | PaymentOptionCreateNestedOneWithoutPaymentMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| paymentDetailId | Int | No |
| paymentOptionId | Int | No |
| cardProvider | String | Null | Yes |
| nameOnCard | String | Null | Yes |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentMethodWhereUniqueInput | No |
| create | PaymentMethodCreateWithoutUserInput | PaymentMethodUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PaymentMethodCreateManyUserInput | PaymentMethodCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| shippingDetail | ShippingDetailCreateNestedOneWithoutOrderInput | No |
| paymentDetail | PaymentDetailCreateNestedOneWithoutOrderInput | No |
| orderDetail | OrderDetailCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| shippingDetail | ShippingDetailUncheckedCreateNestedOneWithoutOrderInput | No |
| paymentDetail | PaymentDetailUncheckedCreateNestedOneWithoutOrderInput | No |
| orderDetail | OrderDetailUncheckedCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutUserInput | OrderUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrderCreateManyUserInput | OrderCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | AuthenticationTokenUpdateWithoutUserInput | AuthenticationTokenUncheckedUpdateWithoutUserInput | No |
| create | AuthenticationTokenCreateWithoutUserInput | AuthenticationTokenUncheckedCreateWithoutUserInput | No |
| where | AuthenticationTokenWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AuthenticationTokenWhereInput | No |
| data | AuthenticationTokenUpdateWithoutUserInput | AuthenticationTokenUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| token | String | StringFieldUpdateOperationsInput | No |
| expiry | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expiry | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserProfileUpdateWithoutUserInput | UserProfileUncheckedUpdateWithoutUserInput | No |
| create | UserProfileCreateWithoutUserInput | UserProfileUncheckedCreateWithoutUserInput | No |
| where | UserProfileWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserProfileWhereInput | No |
| data | UserProfileUpdateWithoutUserInput | UserProfileUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| birthDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| gender | Gender | NullableEnumGenderFieldUpdateOperationsInput | Null | Yes |
| photo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bio | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userAddress | UserAddressUpdateManyWithoutUserProfileNestedInput | No |
| socialLinks | SocialLinkUpdateManyWithoutUserProfileNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| birthDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| gender | Gender | NullableEnumGenderFieldUpdateOperationsInput | Null | Yes |
| photo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bio | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userAddress | UserAddressUncheckedUpdateManyWithoutUserProfileNestedInput | No |
| socialLinks | SocialLinkUncheckedUpdateManyWithoutUserProfileNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserReviewWhereUniqueInput | No |
| update | UserReviewUpdateWithoutAuthorInput | UserReviewUncheckedUpdateWithoutAuthorInput | No |
| create | UserReviewCreateWithoutAuthorInput | UserReviewUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserReviewWhereUniqueInput | No |
| data | UserReviewUpdateWithoutAuthorInput | UserReviewUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserReviewScalarWhereInput | No |
| data | UserReviewUpdateManyMutationInput | UserReviewUncheckedUpdateManyWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CartUpdateWithoutUserInput | CartUncheckedUpdateWithoutUserInput | No |
| create | CartCreateWithoutUserInput | CartUncheckedCreateWithoutUserInput | No |
| where | CartWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartWhereInput | No |
| data | CartUpdateWithoutUserInput | CartUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cartItems | CartItemUpdateManyWithoutCartNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cartItems | CartItemUncheckedUpdateManyWithoutCartNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | LoginUpdateWithoutUserInput | LoginUncheckedUpdateWithoutUserInput | No |
| create | LoginCreateWithoutUserInput | LoginUncheckedCreateWithoutUserInput | No |
| where | LoginWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginWhereInput | No |
| data | LoginUpdateWithoutUserInput | LoginUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| username | String | StringFieldUpdateOperationsInput | No |
| password | String | StringFieldUpdateOperationsInput | No |
| failedAttempts | Int | IntFieldUpdateOperationsInput | No |
| lockoutTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastLogin | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| username | String | StringFieldUpdateOperationsInput | No |
| password | String | StringFieldUpdateOperationsInput | No |
| failedAttempts | Int | IntFieldUpdateOperationsInput | No |
| lockoutTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastLogin | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleWhereUniqueInput | No |
| update | UserRoleUpdateWithoutUserInput | UserRoleUncheckedUpdateWithoutUserInput | No |
| create | UserRoleCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleWhereUniqueInput | No |
| data | UserRoleUpdateWithoutUserInput | UserRoleUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleScalarWhereInput | No |
| data | UserRoleUpdateManyMutationInput | UserRoleUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserRoleScalarWhereInput | UserRoleScalarWhereInput[] | No |
| OR | UserRoleScalarWhereInput[] | No |
| NOT | UserRoleScalarWhereInput | UserRoleScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| userId | IntFilter | Int | No |
| roleId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentMethodWhereUniqueInput | No |
| update | PaymentMethodUpdateWithoutUserInput | PaymentMethodUncheckedUpdateWithoutUserInput | No |
| create | PaymentMethodCreateWithoutUserInput | PaymentMethodUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentMethodWhereUniqueInput | No |
| data | PaymentMethodUpdateWithoutUserInput | PaymentMethodUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentMethodScalarWhereInput | No |
| data | PaymentMethodUpdateManyMutationInput | PaymentMethodUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PaymentMethodScalarWhereInput | PaymentMethodScalarWhereInput[] | No |
| OR | PaymentMethodScalarWhereInput[] | No |
| NOT | PaymentMethodScalarWhereInput | PaymentMethodScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| userId | IntFilter | Int | No |
| paymentDetailId | IntFilter | Int | No |
| paymentOptionId | IntFilter | Int | No |
| cardProvider | StringNullableFilter | String | Null | Yes |
| nameOnCard | StringNullableFilter | String | Null | Yes |
| isDefault | BoolFilter | Boolean | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| update | OrderUpdateWithoutUserInput | OrderUncheckedUpdateWithoutUserInput | No |
| create | OrderCreateWithoutUserInput | OrderUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| data | OrderUpdateWithoutUserInput | OrderUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderScalarWhereInput | No |
| data | OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| OR | OrderScalarWhereInput[] | No |
| NOT | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| id | StringFilter | String | No |
| status | EnumOrderStatusTypeFilter | OrderStatusType | No |
| tax | DecimalFilter | Decimal | No |
| total | DecimalFilter | Decimal | No |
| createdAt | DateTimeFilter | DateTime | No |
| userId | IntFilter | Int | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenCreateNestedOneWithoutUserInput | No |
| profile | UserProfileCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewCreateNestedManyWithoutAuthorInput | No |
| cart | CartCreateNestedOneWithoutUserInput | No |
| roles | UserRoleCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodCreateNestedManyWithoutUserInput | No |
| orders | OrderCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenUncheckedCreateNestedOneWithoutUserInput | No |
| profile | UserProfileUncheckedCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewUncheckedCreateNestedManyWithoutAuthorInput | No |
| cart | CartUncheckedCreateNestedOneWithoutUserInput | No |
| roles | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodUncheckedCreateNestedManyWithoutUserInput | No |
| orders | OrderUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutLoginInput | UserUncheckedCreateWithoutLoginInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutLoginInput | UserUncheckedUpdateWithoutLoginInput | No |
| create | UserCreateWithoutLoginInput | UserUncheckedCreateWithoutLoginInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutLoginInput | UserUncheckedUpdateWithoutLoginInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUpdateManyWithoutUserNestedInput | No |
| orders | OrderUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUncheckedUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUncheckedUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUncheckedUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUncheckedUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUncheckedUpdateManyWithoutUserNestedInput | No |
| orders | OrderUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| profile | UserProfileCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewCreateNestedManyWithoutAuthorInput | No |
| cart | CartCreateNestedOneWithoutUserInput | No |
| login | LoginCreateNestedOneWithoutUserInput | No |
| roles | UserRoleCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodCreateNestedManyWithoutUserInput | No |
| orders | OrderCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| profile | UserProfileUncheckedCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewUncheckedCreateNestedManyWithoutAuthorInput | No |
| cart | CartUncheckedCreateNestedOneWithoutUserInput | No |
| login | LoginUncheckedCreateNestedOneWithoutUserInput | No |
| roles | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodUncheckedCreateNestedManyWithoutUserInput | No |
| orders | OrderUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutAuthenticationTokenInput | UserUncheckedCreateWithoutAuthenticationTokenInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutAuthenticationTokenInput | UserUncheckedUpdateWithoutAuthenticationTokenInput | No |
| create | UserCreateWithoutAuthenticationTokenInput | UserUncheckedCreateWithoutAuthenticationTokenInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutAuthenticationTokenInput | UserUncheckedUpdateWithoutAuthenticationTokenInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| profile | UserProfileUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUpdateOneWithoutUserNestedInput | No |
| login | LoginUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUpdateManyWithoutUserNestedInput | No |
| orders | OrderUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| profile | UserProfileUncheckedUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUncheckedUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUncheckedUpdateOneWithoutUserNestedInput | No |
| login | LoginUncheckedUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUncheckedUpdateManyWithoutUserNestedInput | No |
| orders | OrderUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| address | AddressCreateNestedOneWithoutUserAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| addressId | Int | No |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserAddressWhereUniqueInput | No |
| create | UserAddressCreateWithoutUserProfileInput | UserAddressUncheckedCreateWithoutUserProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserAddressCreateManyUserProfileInput | UserAddressCreateManyUserProfileInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| socialProvider | String | No |
| socialUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| socialProvider | String | No |
| socialUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | SocialLinkWhereUniqueInput | No |
| create | SocialLinkCreateWithoutUserProfileInput | SocialLinkUncheckedCreateWithoutUserProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SocialLinkCreateManyUserProfileInput | SocialLinkCreateManyUserProfileInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewCreateNestedManyWithoutAuthorInput | No |
| cart | CartCreateNestedOneWithoutUserInput | No |
| login | LoginCreateNestedOneWithoutUserInput | No |
| roles | UserRoleCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodCreateNestedManyWithoutUserInput | No |
| orders | OrderCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenUncheckedCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewUncheckedCreateNestedManyWithoutAuthorInput | No |
| cart | CartUncheckedCreateNestedOneWithoutUserInput | No |
| login | LoginUncheckedCreateNestedOneWithoutUserInput | No |
| roles | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodUncheckedCreateNestedManyWithoutUserInput | No |
| orders | OrderUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutProfileInput | UserUncheckedCreateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserAddressWhereUniqueInput | No |
| update | UserAddressUpdateWithoutUserProfileInput | UserAddressUncheckedUpdateWithoutUserProfileInput | No |
| create | UserAddressCreateWithoutUserProfileInput | UserAddressUncheckedCreateWithoutUserProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserAddressWhereUniqueInput | No |
| data | UserAddressUpdateWithoutUserProfileInput | UserAddressUncheckedUpdateWithoutUserProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserAddressScalarWhereInput | No |
| data | UserAddressUpdateManyMutationInput | UserAddressUncheckedUpdateManyWithoutUserProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserAddressScalarWhereInput | UserAddressScalarWhereInput[] | No |
| OR | UserAddressScalarWhereInput[] | No |
| NOT | UserAddressScalarWhereInput | UserAddressScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| userProfileId | IntFilter | Int | No |
| addressId | IntFilter | Int | No |
| isDefault | BoolFilter | Boolean | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | SocialLinkWhereUniqueInput | No |
| update | SocialLinkUpdateWithoutUserProfileInput | SocialLinkUncheckedUpdateWithoutUserProfileInput | No |
| create | SocialLinkCreateWithoutUserProfileInput | SocialLinkUncheckedCreateWithoutUserProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SocialLinkWhereUniqueInput | No |
| data | SocialLinkUpdateWithoutUserProfileInput | SocialLinkUncheckedUpdateWithoutUserProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SocialLinkScalarWhereInput | No |
| data | SocialLinkUpdateManyMutationInput | SocialLinkUncheckedUpdateManyWithoutUserProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SocialLinkScalarWhereInput | SocialLinkScalarWhereInput[] | No |
| OR | SocialLinkScalarWhereInput[] | No |
| NOT | SocialLinkScalarWhereInput | SocialLinkScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| userProfileId | IntFilter | Int | No |
| socialProvider | StringFilter | String | No |
| socialUrl | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutProfileInput | UserUncheckedUpdateWithoutProfileInput | No |
| create | UserCreateWithoutProfileInput | UserUncheckedCreateWithoutProfileInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutProfileInput | UserUncheckedUpdateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUpdateOneWithoutUserNestedInput | No |
| login | LoginUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUpdateManyWithoutUserNestedInput | No |
| orders | OrderUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUncheckedUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUncheckedUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUncheckedUpdateOneWithoutUserNestedInput | No |
| login | LoginUncheckedUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUncheckedUpdateManyWithoutUserNestedInput | No |
| orders | OrderUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| phone | String | Null | Yes |
| birthDate | DateTime | Null | Yes |
| gender | Gender | Null | Yes |
| photo | String | Null | Yes |
| bio | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| socialLinks | SocialLinkCreateNestedManyWithoutUserProfileInput | No |
| user | UserCreateNestedOneWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| phone | String | Null | Yes |
| birthDate | DateTime | Null | Yes |
| gender | Gender | Null | Yes |
| photo | String | Null | Yes |
| bio | String | Null | Yes |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| socialLinks | SocialLinkUncheckedCreateNestedManyWithoutUserProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserProfileWhereUniqueInput | No |
| create | UserProfileCreateWithoutUserAddressInput | UserProfileUncheckedCreateWithoutUserAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| street | String | No |
| unit | String | No |
| city | String | No |
| zipcode | String | No |
| state | String | No |
| country | String | No |
| planet | String | Null | Yes |
| solarSystem | String | Null | Yes |
| galaxy | String | Null | Yes |
| localGroup | String | Null | Yes |
| localCluster | String | Null | Yes |
| universe | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| paymentDetail | PaymentDetailCreateNestedManyWithoutBillingAddressInput | No |
| shippingDetail | ShippingDetailCreateNestedManyWithoutShippingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| street | String | No |
| unit | String | No |
| city | String | No |
| zipcode | String | No |
| state | String | No |
| country | String | No |
| planet | String | Null | Yes |
| solarSystem | String | Null | Yes |
| galaxy | String | Null | Yes |
| localGroup | String | Null | Yes |
| localCluster | String | Null | Yes |
| universe | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| paymentDetail | PaymentDetailUncheckedCreateNestedManyWithoutBillingAddressInput | No |
| shippingDetail | ShippingDetailUncheckedCreateNestedManyWithoutShippingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AddressWhereUniqueInput | No |
| create | AddressCreateWithoutUserAddressInput | AddressUncheckedCreateWithoutUserAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserProfileUpdateWithoutUserAddressInput | UserProfileUncheckedUpdateWithoutUserAddressInput | No |
| create | UserProfileCreateWithoutUserAddressInput | UserProfileUncheckedCreateWithoutUserAddressInput | No |
| where | UserProfileWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserProfileWhereInput | No |
| data | UserProfileUpdateWithoutUserAddressInput | UserProfileUncheckedUpdateWithoutUserAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| birthDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| gender | Gender | NullableEnumGenderFieldUpdateOperationsInput | Null | Yes |
| photo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bio | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| socialLinks | SocialLinkUpdateManyWithoutUserProfileNestedInput | No |
| user | UserUpdateOneRequiredWithoutProfileNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| birthDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| gender | Gender | NullableEnumGenderFieldUpdateOperationsInput | Null | Yes |
| photo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bio | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| socialLinks | SocialLinkUncheckedUpdateManyWithoutUserProfileNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | AddressUpdateWithoutUserAddressInput | AddressUncheckedUpdateWithoutUserAddressInput | No |
| create | AddressCreateWithoutUserAddressInput | AddressUncheckedCreateWithoutUserAddressInput | No |
| where | AddressWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AddressWhereInput | No |
| data | AddressUpdateWithoutUserAddressInput | AddressUncheckedUpdateWithoutUserAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userProfile | UserProfileCreateNestedOneWithoutUserAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId | Int | No |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserAddressWhereUniqueInput | No |
| create | UserAddressCreateWithoutAddressInput | UserAddressUncheckedCreateWithoutAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserAddressCreateManyAddressInput | UserAddressCreateManyAddressInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| paymentMethod | PaymentMethodCreateNestedManyWithoutPaymentDetailInput | No |
| order | OrderCreateNestedOneWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| paymentMethod | PaymentMethodUncheckedCreateNestedManyWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentDetailWhereUniqueInput | No |
| create | PaymentDetailCreateWithoutBillingAddressInput | PaymentDetailUncheckedCreateWithoutBillingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PaymentDetailCreateManyBillingAddressInput | PaymentDetailCreateManyBillingAddressInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| estimatedArrival | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| shippingMethod | ShippingMethodCreateNestedOneWithoutShippingDetailInput | No |
| order | OrderCreateNestedOneWithoutShippingDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| estimatedArrival | DateTime | No |
| shippingMethodId | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShippingDetailWhereUniqueInput | No |
| create | ShippingDetailCreateWithoutShippingAddressInput | ShippingDetailUncheckedCreateWithoutShippingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ShippingDetailCreateManyShippingAddressInput | ShippingDetailCreateManyShippingAddressInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserAddressWhereUniqueInput | No |
| update | UserAddressUpdateWithoutAddressInput | UserAddressUncheckedUpdateWithoutAddressInput | No |
| create | UserAddressCreateWithoutAddressInput | UserAddressUncheckedCreateWithoutAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserAddressWhereUniqueInput | No |
| data | UserAddressUpdateWithoutAddressInput | UserAddressUncheckedUpdateWithoutAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserAddressScalarWhereInput | No |
| data | UserAddressUpdateManyMutationInput | UserAddressUncheckedUpdateManyWithoutAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentDetailWhereUniqueInput | No |
| data | PaymentDetailUpdateWithoutBillingAddressInput | PaymentDetailUncheckedUpdateWithoutBillingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentDetailScalarWhereInput | No |
| data | PaymentDetailUpdateManyMutationInput | PaymentDetailUncheckedUpdateManyWithoutBillingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PaymentDetailScalarWhereInput | PaymentDetailScalarWhereInput[] | No |
| OR | PaymentDetailScalarWhereInput[] | No |
| NOT | PaymentDetailScalarWhereInput | PaymentDetailScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| billingAddressId | IntFilter | Int | No |
| orderId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShippingDetailWhereUniqueInput | No |
| data | ShippingDetailUpdateWithoutShippingAddressInput | ShippingDetailUncheckedUpdateWithoutShippingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShippingDetailScalarWhereInput | No |
| data | ShippingDetailUpdateManyMutationInput | ShippingDetailUncheckedUpdateManyWithoutShippingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ShippingDetailScalarWhereInput | ShippingDetailScalarWhereInput[] | No |
| OR | ShippingDetailScalarWhereInput[] | No |
| NOT | ShippingDetailScalarWhereInput | ShippingDetailScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| estimatedArrival | DateTimeFilter | DateTime | No |
| shippingAddressId | IntFilter | Int | No |
| shippingMethodId | IntFilter | Int | No |
| orderId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| phone | String | Null | Yes |
| birthDate | DateTime | Null | Yes |
| gender | Gender | Null | Yes |
| photo | String | Null | Yes |
| bio | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userAddress | UserAddressCreateNestedManyWithoutUserProfileInput | No |
| user | UserCreateNestedOneWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| phone | String | Null | Yes |
| birthDate | DateTime | Null | Yes |
| gender | Gender | Null | Yes |
| photo | String | Null | Yes |
| bio | String | Null | Yes |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userAddress | UserAddressUncheckedCreateNestedManyWithoutUserProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserProfileWhereUniqueInput | No |
| create | UserProfileCreateWithoutSocialLinksInput | UserProfileUncheckedCreateWithoutSocialLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserProfileUpdateWithoutSocialLinksInput | UserProfileUncheckedUpdateWithoutSocialLinksInput | No |
| create | UserProfileCreateWithoutSocialLinksInput | UserProfileUncheckedCreateWithoutSocialLinksInput | No |
| where | UserProfileWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserProfileWhereInput | No |
| data | UserProfileUpdateWithoutSocialLinksInput | UserProfileUncheckedUpdateWithoutSocialLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| birthDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| gender | Gender | NullableEnumGenderFieldUpdateOperationsInput | Null | Yes |
| photo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bio | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userAddress | UserAddressUpdateManyWithoutUserProfileNestedInput | No |
| user | UserUpdateOneRequiredWithoutProfileNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| birthDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| gender | Gender | NullableEnumGenderFieldUpdateOperationsInput | Null | Yes |
| photo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bio | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userAddress | UserAddressUncheckedUpdateManyWithoutUserProfileNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenCreateNestedOneWithoutUserInput | No |
| profile | UserProfileCreateNestedOneWithoutUserInput | No |
| cart | CartCreateNestedOneWithoutUserInput | No |
| login | LoginCreateNestedOneWithoutUserInput | No |
| roles | UserRoleCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodCreateNestedManyWithoutUserInput | No |
| orders | OrderCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenUncheckedCreateNestedOneWithoutUserInput | No |
| profile | UserProfileUncheckedCreateNestedOneWithoutUserInput | No |
| cart | CartUncheckedCreateNestedOneWithoutUserInput | No |
| login | LoginUncheckedCreateNestedOneWithoutUserInput | No |
| roles | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodUncheckedCreateNestedManyWithoutUserInput | No |
| orders | OrderUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutAuthoredReviewsInput | UserUncheckedCreateWithoutAuthoredReviewsInput | No |
| Name | Type | Nullable |
|---|---|---|
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| category | CategoryCreateNestedOneWithoutProductInput | No |
| orderDetail | OrderDetailCreateNestedManyWithoutProductInput | No |
| cartItem | CartItemCreateNestedManyWithoutProductInput | No |
| productInventory | ProductInventoryCreateNestedManyWithoutProductInput | No |
| productImage | ProductImageCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| categoryId | Int | No |
| orderDetail | OrderDetailUncheckedCreateNestedManyWithoutProductInput | No |
| cartItem | CartItemUncheckedCreateNestedManyWithoutProductInput | No |
| productInventory | ProductInventoryUncheckedCreateNestedManyWithoutProductInput | No |
| productImage | ProductImageUncheckedCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductWhereUniqueInput | No |
| create | ProductCreateWithoutReviewsInput | ProductUncheckedCreateWithoutReviewsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutAuthoredReviewsInput | UserUncheckedUpdateWithoutAuthoredReviewsInput | No |
| create | UserCreateWithoutAuthoredReviewsInput | UserUncheckedCreateWithoutAuthoredReviewsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutAuthoredReviewsInput | UserUncheckedUpdateWithoutAuthoredReviewsInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUpdateOneWithoutUserNestedInput | No |
| cart | CartUpdateOneWithoutUserNestedInput | No |
| login | LoginUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUpdateManyWithoutUserNestedInput | No |
| orders | OrderUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUncheckedUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUncheckedUpdateOneWithoutUserNestedInput | No |
| cart | CartUncheckedUpdateOneWithoutUserNestedInput | No |
| login | LoginUncheckedUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUncheckedUpdateManyWithoutUserNestedInput | No |
| orders | OrderUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ProductUpdateWithoutReviewsInput | ProductUncheckedUpdateWithoutReviewsInput | No |
| create | ProductCreateWithoutReviewsInput | ProductUncheckedCreateWithoutReviewsInput | No |
| where | ProductWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductWhereInput | No |
| data | ProductUpdateWithoutReviewsInput | ProductUncheckedUpdateWithoutReviewsInput | No |
| Name | Type | Nullable |
|---|---|---|
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| parentCategory | CategoryCreateNestedOneWithoutChildCategoriesInput | No |
| childCategories | CategoryCreateNestedManyWithoutParentCategoryInput | No |
| product | ProductCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| parentCategoryId | Int | Null | Yes |
| childCategories | CategoryUncheckedCreateNestedManyWithoutParentCategoryInput | No |
| product | ProductUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutPromotionCategoryInput | CategoryUncheckedCreateWithoutPromotionCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| promotionName | String | No |
| promotionDesc | String | No |
| promotionRate | Int | No |
| isActive | Boolean | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| CartItem | CartItemCreateNestedOneWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| promotionName | String | No |
| promotionDesc | String | No |
| promotionRate | Int | No |
| isActive | Boolean | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| CartItem | CartItemUncheckedCreateNestedOneWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| create | PromotionCreateWithoutPromotionCategoryInput | PromotionUncheckedCreateWithoutPromotionCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CategoryUpdateWithoutPromotionCategoryInput | CategoryUncheckedUpdateWithoutPromotionCategoryInput | No |
| create | CategoryCreateWithoutPromotionCategoryInput | CategoryUncheckedCreateWithoutPromotionCategoryInput | No |
| where | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereInput | No |
| data | CategoryUpdateWithoutPromotionCategoryInput | CategoryUncheckedUpdateWithoutPromotionCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| categoryName | String | StringFieldUpdateOperationsInput | No |
| categoryDesc | String | StringFieldUpdateOperationsInput | No |
| slug | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentCategory | CategoryUpdateOneWithoutChildCategoriesNestedInput | No |
| childCategories | CategoryUpdateManyWithoutParentCategoryNestedInput | No |
| product | ProductUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| categoryName | String | StringFieldUpdateOperationsInput | No |
| categoryDesc | String | StringFieldUpdateOperationsInput | No |
| slug | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentCategoryId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| childCategories | CategoryUncheckedUpdateManyWithoutParentCategoryNestedInput | No |
| product | ProductUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PromotionUpdateWithoutPromotionCategoryInput | PromotionUncheckedUpdateWithoutPromotionCategoryInput | No |
| create | PromotionCreateWithoutPromotionCategoryInput | PromotionUncheckedCreateWithoutPromotionCategoryInput | No |
| where | PromotionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereInput | No |
| data | PromotionUpdateWithoutPromotionCategoryInput | PromotionUncheckedUpdateWithoutPromotionCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| promotionName | String | StringFieldUpdateOperationsInput | No |
| promotionDesc | String | StringFieldUpdateOperationsInput | No |
| promotionRate | Int | IntFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| CartItem | CartItemUpdateOneWithoutPromotionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| promotionName | String | StringFieldUpdateOperationsInput | No |
| promotionDesc | String | StringFieldUpdateOperationsInput | No |
| promotionRate | Int | IntFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| CartItem | CartItemUncheckedUpdateOneWithoutPromotionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| category | CategoryCreateNestedOneWithoutPromotionCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionCategoryWhereUniqueInput | No |
| create | PromotionCategoryCreateWithoutPromotionInput | PromotionCategoryUncheckedCreateWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PromotionCategoryCreateManyPromotionInput | PromotionCategoryCreateManyPromotionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| cart | CartCreateNestedOneWithoutCartItemsInput | No |
| product | ProductCreateNestedOneWithoutCartItemInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| cartId | Int | No |
| productId | Int | No |
| quantity | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartItemWhereUniqueInput | No |
| create | CartItemCreateWithoutPromotionInput | CartItemUncheckedCreateWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionCategoryWhereUniqueInput | No |
| data | PromotionCategoryUpdateWithoutPromotionInput | PromotionCategoryUncheckedUpdateWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionCategoryScalarWhereInput | No |
| data | PromotionCategoryUpdateManyMutationInput | PromotionCategoryUncheckedUpdateManyWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CartItemUpdateWithoutPromotionInput | CartItemUncheckedUpdateWithoutPromotionInput | No |
| create | CartItemCreateWithoutPromotionInput | CartItemUncheckedCreateWithoutPromotionInput | No |
| where | CartItemWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartItemWhereInput | No |
| data | CartItemUpdateWithoutPromotionInput | CartItemUncheckedUpdateWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cart | CartUpdateOneRequiredWithoutCartItemsNestedInput | No |
| product | ProductUpdateOneRequiredWithoutCartItemNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| cartId | Int | IntFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutCartInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartWhereUniqueInput | No |
| create | CartCreateWithoutCartItemsInput | CartUncheckedCreateWithoutCartItemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| category | CategoryCreateNestedOneWithoutProductInput | No |
| orderDetail | OrderDetailCreateNestedManyWithoutProductInput | No |
| productInventory | ProductInventoryCreateNestedManyWithoutProductInput | No |
| productImage | ProductImageCreateNestedManyWithoutProductInput | No |
| reviews | UserReviewCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| categoryId | Int | No |
| orderDetail | OrderDetailUncheckedCreateNestedManyWithoutProductInput | No |
| productInventory | ProductInventoryUncheckedCreateNestedManyWithoutProductInput | No |
| productImage | ProductImageUncheckedCreateNestedManyWithoutProductInput | No |
| reviews | UserReviewUncheckedCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductWhereUniqueInput | No |
| create | ProductCreateWithoutCartItemInput | ProductUncheckedCreateWithoutCartItemInput | No |
| Name | Type | Nullable |
|---|---|---|
| promotionName | String | No |
| promotionDesc | String | No |
| promotionRate | Int | No |
| isActive | Boolean | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| promotionCategory | PromotionCategoryCreateNestedManyWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| promotionName | String | No |
| promotionDesc | String | No |
| promotionRate | Int | No |
| isActive | Boolean | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| promotionCategory | PromotionCategoryUncheckedCreateNestedManyWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| create | PromotionCreateWithoutCartItemInput | PromotionUncheckedCreateWithoutCartItemInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CartUpdateWithoutCartItemsInput | CartUncheckedUpdateWithoutCartItemsInput | No |
| create | CartCreateWithoutCartItemsInput | CartUncheckedCreateWithoutCartItemsInput | No |
| where | CartWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartWhereInput | No |
| data | CartUpdateWithoutCartItemsInput | CartUncheckedUpdateWithoutCartItemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutCartNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ProductUpdateWithoutCartItemInput | ProductUncheckedUpdateWithoutCartItemInput | No |
| create | ProductCreateWithoutCartItemInput | ProductUncheckedCreateWithoutCartItemInput | No |
| where | ProductWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductWhereInput | No |
| data | ProductUpdateWithoutCartItemInput | ProductUncheckedUpdateWithoutCartItemInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PromotionUpdateWithoutCartItemInput | PromotionUncheckedUpdateWithoutCartItemInput | No |
| create | PromotionCreateWithoutCartItemInput | PromotionUncheckedCreateWithoutCartItemInput | No |
| where | PromotionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereInput | No |
| data | PromotionUpdateWithoutCartItemInput | PromotionUncheckedUpdateWithoutCartItemInput | No |
| Name | Type | Nullable |
|---|---|---|
| promotionName | String | StringFieldUpdateOperationsInput | No |
| promotionDesc | String | StringFieldUpdateOperationsInput | No |
| promotionRate | Int | IntFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| promotionCategory | PromotionCategoryUpdateManyWithoutPromotionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| promotionName | String | StringFieldUpdateOperationsInput | No |
| promotionDesc | String | StringFieldUpdateOperationsInput | No |
| promotionRate | Int | IntFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| promotionCategory | PromotionCategoryUncheckedUpdateManyWithoutPromotionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenCreateNestedOneWithoutUserInput | No |
| profile | UserProfileCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewCreateNestedManyWithoutAuthorInput | No |
| login | LoginCreateNestedOneWithoutUserInput | No |
| roles | UserRoleCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodCreateNestedManyWithoutUserInput | No |
| orders | OrderCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenUncheckedCreateNestedOneWithoutUserInput | No |
| profile | UserProfileUncheckedCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewUncheckedCreateNestedManyWithoutAuthorInput | No |
| login | LoginUncheckedCreateNestedOneWithoutUserInput | No |
| roles | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodUncheckedCreateNestedManyWithoutUserInput | No |
| orders | OrderUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCartInput | UserUncheckedCreateWithoutCartInput | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| product | ProductCreateNestedOneWithoutCartItemInput | No |
| Promotion | PromotionCreateNestedOneWithoutCartItemInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productId | Int | No |
| quantity | Int | No |
| promotionId | Int | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartItemWhereUniqueInput | No |
| create | CartItemCreateWithoutCartInput | CartItemUncheckedCreateWithoutCartInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CartItemCreateManyCartInput | CartItemCreateManyCartInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutCartInput | UserUncheckedUpdateWithoutCartInput | No |
| create | UserCreateWithoutCartInput | UserUncheckedCreateWithoutCartInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutCartInput | UserUncheckedUpdateWithoutCartInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUpdateManyWithoutAuthorNestedInput | No |
| login | LoginUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUpdateManyWithoutUserNestedInput | No |
| orders | OrderUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUncheckedUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUncheckedUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUncheckedUpdateManyWithoutAuthorNestedInput | No |
| login | LoginUncheckedUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUncheckedUpdateManyWithoutUserNestedInput | No |
| orders | OrderUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartItemWhereUniqueInput | No |
| update | CartItemUpdateWithoutCartInput | CartItemUncheckedUpdateWithoutCartInput | No |
| create | CartItemCreateWithoutCartInput | CartItemUncheckedCreateWithoutCartInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartItemWhereUniqueInput | No |
| data | CartItemUpdateWithoutCartInput | CartItemUncheckedUpdateWithoutCartInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CartItemScalarWhereInput | No |
| data | CartItemUpdateManyMutationInput | CartItemUncheckedUpdateManyWithoutCartInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenCreateNestedOneWithoutUserInput | No |
| profile | UserProfileCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewCreateNestedManyWithoutAuthorInput | No |
| cart | CartCreateNestedOneWithoutUserInput | No |
| login | LoginCreateNestedOneWithoutUserInput | No |
| roles | UserRoleCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenUncheckedCreateNestedOneWithoutUserInput | No |
| profile | UserProfileUncheckedCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewUncheckedCreateNestedManyWithoutAuthorInput | No |
| cart | CartUncheckedCreateNestedOneWithoutUserInput | No |
| login | LoginUncheckedCreateNestedOneWithoutUserInput | No |
| roles | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| paymentMethod | PaymentMethodUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutOrdersInput | UserUncheckedCreateWithoutOrdersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| estimatedArrival | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| shippingAddress | AddressCreateNestedOneWithoutShippingDetailInput | No |
| shippingMethod | ShippingMethodCreateNestedOneWithoutShippingDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| estimatedArrival | DateTime | No |
| shippingAddressId | Int | No |
| shippingMethodId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShippingDetailWhereUniqueInput | No |
| create | ShippingDetailCreateWithoutOrderInput | ShippingDetailUncheckedCreateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| paymentMethod | PaymentMethodCreateNestedManyWithoutPaymentDetailInput | No |
| billingAddress | AddressCreateNestedOneWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| billingAddressId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| paymentMethod | PaymentMethodUncheckedCreateNestedManyWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentDetailWhereUniqueInput | No |
| create | PaymentDetailCreateWithoutOrderInput | PaymentDetailUncheckedCreateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| quantity | Int | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| product | ProductCreateNestedOneWithoutOrderDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productId | Int | No |
| quantity | Int | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderDetailWhereUniqueInput | No |
| create | OrderDetailCreateWithoutOrderInput | OrderDetailUncheckedCreateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrderDetailCreateManyOrderInput | OrderDetailCreateManyOrderInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutOrdersInput | UserUncheckedUpdateWithoutOrdersInput | No |
| create | UserCreateWithoutOrdersInput | UserUncheckedCreateWithoutOrdersInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutOrdersInput | UserUncheckedUpdateWithoutOrdersInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUpdateOneWithoutUserNestedInput | No |
| login | LoginUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUncheckedUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUncheckedUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUncheckedUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUncheckedUpdateOneWithoutUserNestedInput | No |
| login | LoginUncheckedUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ShippingDetailUpdateWithoutOrderInput | ShippingDetailUncheckedUpdateWithoutOrderInput | No |
| create | ShippingDetailCreateWithoutOrderInput | ShippingDetailUncheckedCreateWithoutOrderInput | No |
| where | ShippingDetailWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShippingDetailWhereInput | No |
| data | ShippingDetailUpdateWithoutOrderInput | ShippingDetailUncheckedUpdateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| estimatedArrival | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingAddress | AddressUpdateOneRequiredWithoutShippingDetailNestedInput | No |
| shippingMethod | ShippingMethodUpdateOneRequiredWithoutShippingDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| estimatedArrival | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingAddressId | Int | IntFieldUpdateOperationsInput | No |
| shippingMethodId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PaymentDetailUpdateWithoutOrderInput | PaymentDetailUncheckedUpdateWithoutOrderInput | No |
| create | PaymentDetailCreateWithoutOrderInput | PaymentDetailUncheckedCreateWithoutOrderInput | No |
| where | PaymentDetailWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentDetailWhereInput | No |
| data | PaymentDetailUpdateWithoutOrderInput | PaymentDetailUncheckedUpdateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| paymentMethod | PaymentMethodUpdateManyWithoutPaymentDetailNestedInput | No |
| billingAddress | AddressUpdateOneRequiredWithoutPaymentDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| billingAddressId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| paymentMethod | PaymentMethodUncheckedUpdateManyWithoutPaymentDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderDetailWhereUniqueInput | No |
| update | OrderDetailUpdateWithoutOrderInput | OrderDetailUncheckedUpdateWithoutOrderInput | No |
| create | OrderDetailCreateWithoutOrderInput | OrderDetailUncheckedCreateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderDetailWhereUniqueInput | No |
| data | OrderDetailUpdateWithoutOrderInput | OrderDetailUncheckedUpdateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderDetailScalarWhereInput | No |
| data | OrderDetailUpdateManyMutationInput | OrderDetailUncheckedUpdateManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| category | CategoryCreateNestedOneWithoutProductInput | No |
| cartItem | CartItemCreateNestedManyWithoutProductInput | No |
| productInventory | ProductInventoryCreateNestedManyWithoutProductInput | No |
| productImage | ProductImageCreateNestedManyWithoutProductInput | No |
| reviews | UserReviewCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| categoryId | Int | No |
| cartItem | CartItemUncheckedCreateNestedManyWithoutProductInput | No |
| productInventory | ProductInventoryUncheckedCreateNestedManyWithoutProductInput | No |
| productImage | ProductImageUncheckedCreateNestedManyWithoutProductInput | No |
| reviews | UserReviewUncheckedCreateNestedManyWithoutProductInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductWhereUniqueInput | No |
| create | ProductCreateWithoutOrderDetailInput | ProductUncheckedCreateWithoutOrderDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutOrdersInput | No |
| shippingDetail | ShippingDetailCreateNestedOneWithoutOrderInput | No |
| paymentDetail | PaymentDetailCreateNestedOneWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| userId | Int | No |
| updatedAt | DateTime | No |
| shippingDetail | ShippingDetailUncheckedCreateNestedOneWithoutOrderInput | No |
| paymentDetail | PaymentDetailUncheckedCreateNestedOneWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutOrderDetailInput | OrderUncheckedCreateWithoutOrderDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ProductUpdateWithoutOrderDetailInput | ProductUncheckedUpdateWithoutOrderDetailInput | No |
| create | ProductCreateWithoutOrderDetailInput | ProductUncheckedCreateWithoutOrderDetailInput | No |
| where | ProductWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProductWhereInput | No |
| data | ProductUpdateWithoutOrderDetailInput | ProductUncheckedUpdateWithoutOrderDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrderUpdateWithoutOrderDetailInput | OrderUncheckedUpdateWithoutOrderDetailInput | No |
| create | OrderCreateWithoutOrderDetailInput | OrderUncheckedCreateWithoutOrderDetailInput | No |
| where | OrderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereInput | No |
| data | OrderUpdateWithoutOrderDetailInput | OrderUncheckedUpdateWithoutOrderDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| status | OrderStatusType | EnumOrderStatusTypeFieldUpdateOperationsInput | No |
| tax | Decimal | DecimalFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutOrdersNestedInput | No |
| shippingDetail | ShippingDetailUpdateOneWithoutOrderNestedInput | No |
| paymentDetail | PaymentDetailUpdateOneWithoutOrderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| status | OrderStatusType | EnumOrderStatusTypeFieldUpdateOperationsInput | No |
| tax | Decimal | DecimalFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingDetail | ShippingDetailUncheckedUpdateOneWithoutOrderNestedInput | No |
| paymentDetail | PaymentDetailUncheckedUpdateOneWithoutOrderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| cardProvider | String | Null | Yes |
| nameOnCard | String | Null | Yes |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutPaymentMethodInput | No |
| paymentOption | PaymentOptionCreateNestedOneWithoutPaymentMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| paymentOptionId | Int | No |
| cardProvider | String | Null | Yes |
| nameOnCard | String | Null | Yes |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentMethodWhereUniqueInput | No |
| create | PaymentMethodCreateWithoutPaymentDetailInput | PaymentMethodUncheckedCreateWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PaymentMethodCreateManyPaymentDetailInput | PaymentMethodCreateManyPaymentDetailInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| street | String | No |
| unit | String | No |
| city | String | No |
| zipcode | String | No |
| state | String | No |
| country | String | No |
| planet | String | Null | Yes |
| solarSystem | String | Null | Yes |
| galaxy | String | Null | Yes |
| localGroup | String | Null | Yes |
| localCluster | String | Null | Yes |
| universe | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userAddress | UserAddressCreateNestedManyWithoutAddressInput | No |
| shippingDetail | ShippingDetailCreateNestedManyWithoutShippingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| street | String | No |
| unit | String | No |
| city | String | No |
| zipcode | String | No |
| state | String | No |
| country | String | No |
| planet | String | Null | Yes |
| solarSystem | String | Null | Yes |
| galaxy | String | Null | Yes |
| localGroup | String | Null | Yes |
| localCluster | String | Null | Yes |
| universe | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userAddress | UserAddressUncheckedCreateNestedManyWithoutAddressInput | No |
| shippingDetail | ShippingDetailUncheckedCreateNestedManyWithoutShippingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AddressWhereUniqueInput | No |
| create | AddressCreateWithoutPaymentDetailInput | AddressUncheckedCreateWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutOrdersInput | No |
| shippingDetail | ShippingDetailCreateNestedOneWithoutOrderInput | No |
| orderDetail | OrderDetailCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| userId | Int | No |
| updatedAt | DateTime | No |
| shippingDetail | ShippingDetailUncheckedCreateNestedOneWithoutOrderInput | No |
| orderDetail | OrderDetailUncheckedCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutPaymentDetailInput | OrderUncheckedCreateWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentMethodWhereUniqueInput | No |
| update | PaymentMethodUpdateWithoutPaymentDetailInput | PaymentMethodUncheckedUpdateWithoutPaymentDetailInput | No |
| create | PaymentMethodCreateWithoutPaymentDetailInput | PaymentMethodUncheckedCreateWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentMethodWhereUniqueInput | No |
| data | PaymentMethodUpdateWithoutPaymentDetailInput | PaymentMethodUncheckedUpdateWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentMethodScalarWhereInput | No |
| data | PaymentMethodUpdateManyMutationInput | PaymentMethodUncheckedUpdateManyWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | AddressUpdateWithoutPaymentDetailInput | AddressUncheckedUpdateWithoutPaymentDetailInput | No |
| create | AddressCreateWithoutPaymentDetailInput | AddressUncheckedCreateWithoutPaymentDetailInput | No |
| where | AddressWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AddressWhereInput | No |
| data | AddressUpdateWithoutPaymentDetailInput | AddressUncheckedUpdateWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrderUpdateWithoutPaymentDetailInput | OrderUncheckedUpdateWithoutPaymentDetailInput | No |
| create | OrderCreateWithoutPaymentDetailInput | OrderUncheckedCreateWithoutPaymentDetailInput | No |
| where | OrderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereInput | No |
| data | OrderUpdateWithoutPaymentDetailInput | OrderUncheckedUpdateWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| status | OrderStatusType | EnumOrderStatusTypeFieldUpdateOperationsInput | No |
| tax | Decimal | DecimalFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutOrdersNestedInput | No |
| shippingDetail | ShippingDetailUpdateOneWithoutOrderNestedInput | No |
| orderDetail | OrderDetailUpdateManyWithoutOrderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| status | OrderStatusType | EnumOrderStatusTypeFieldUpdateOperationsInput | No |
| tax | Decimal | DecimalFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingDetail | ShippingDetailUncheckedUpdateOneWithoutOrderNestedInput | No |
| orderDetail | OrderDetailUncheckedUpdateManyWithoutOrderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| cardProvider | String | Null | Yes |
| nameOnCard | String | Null | Yes |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutPaymentMethodInput | No |
| paymentDetail | PaymentDetailCreateNestedOneWithoutPaymentMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| paymentDetailId | Int | No |
| cardProvider | String | Null | Yes |
| nameOnCard | String | Null | Yes |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentMethodWhereUniqueInput | No |
| create | PaymentMethodCreateWithoutPaymentOptionInput | PaymentMethodUncheckedCreateWithoutPaymentOptionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PaymentMethodCreateManyPaymentOptionInput | PaymentMethodCreateManyPaymentOptionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentMethodWhereUniqueInput | No |
| update | PaymentMethodUpdateWithoutPaymentOptionInput | PaymentMethodUncheckedUpdateWithoutPaymentOptionInput | No |
| create | PaymentMethodCreateWithoutPaymentOptionInput | PaymentMethodUncheckedCreateWithoutPaymentOptionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentMethodWhereUniqueInput | No |
| data | PaymentMethodUpdateWithoutPaymentOptionInput | PaymentMethodUncheckedUpdateWithoutPaymentOptionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentMethodScalarWhereInput | No |
| data | PaymentMethodUpdateManyMutationInput | PaymentMethodUncheckedUpdateManyWithoutPaymentOptionInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenCreateNestedOneWithoutUserInput | No |
| profile | UserProfileCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewCreateNestedManyWithoutAuthorInput | No |
| cart | CartCreateNestedOneWithoutUserInput | No |
| login | LoginCreateNestedOneWithoutUserInput | No |
| roles | UserRoleCreateNestedManyWithoutUserInput | No |
| orders | OrderCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenUncheckedCreateNestedOneWithoutUserInput | No |
| profile | UserProfileUncheckedCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewUncheckedCreateNestedManyWithoutAuthorInput | No |
| cart | CartUncheckedCreateNestedOneWithoutUserInput | No |
| login | LoginUncheckedCreateNestedOneWithoutUserInput | No |
| roles | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| orders | OrderUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutPaymentMethodInput | UserUncheckedCreateWithoutPaymentMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| billingAddress | AddressCreateNestedOneWithoutPaymentDetailInput | No |
| order | OrderCreateNestedOneWithoutPaymentDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| billingAddressId | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentDetailWhereUniqueInput | No |
| create | PaymentDetailCreateWithoutPaymentMethodInput | PaymentDetailUncheckedCreateWithoutPaymentMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| paymentType | PaymentType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| paymentType | PaymentType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentOptionWhereUniqueInput | No |
| create | PaymentOptionCreateWithoutPaymentMethodInput | PaymentOptionUncheckedCreateWithoutPaymentMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutPaymentMethodInput | UserUncheckedUpdateWithoutPaymentMethodInput | No |
| create | UserCreateWithoutPaymentMethodInput | UserUncheckedCreateWithoutPaymentMethodInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutPaymentMethodInput | UserUncheckedUpdateWithoutPaymentMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUpdateOneWithoutUserNestedInput | No |
| login | LoginUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUpdateManyWithoutUserNestedInput | No |
| orders | OrderUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUncheckedUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUncheckedUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUncheckedUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUncheckedUpdateOneWithoutUserNestedInput | No |
| login | LoginUncheckedUpdateOneWithoutUserNestedInput | No |
| roles | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| orders | OrderUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PaymentDetailUpdateWithoutPaymentMethodInput | PaymentDetailUncheckedUpdateWithoutPaymentMethodInput | No |
| create | PaymentDetailCreateWithoutPaymentMethodInput | PaymentDetailUncheckedCreateWithoutPaymentMethodInput | No |
| where | PaymentDetailWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentDetailWhereInput | No |
| data | PaymentDetailUpdateWithoutPaymentMethodInput | PaymentDetailUncheckedUpdateWithoutPaymentMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| billingAddress | AddressUpdateOneRequiredWithoutPaymentDetailNestedInput | No |
| order | OrderUpdateOneRequiredWithoutPaymentDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| billingAddressId | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PaymentOptionUpdateWithoutPaymentMethodInput | PaymentOptionUncheckedUpdateWithoutPaymentMethodInput | No |
| create | PaymentOptionCreateWithoutPaymentMethodInput | PaymentOptionUncheckedCreateWithoutPaymentMethodInput | No |
| where | PaymentOptionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentOptionWhereInput | No |
| data | PaymentOptionUpdateWithoutPaymentMethodInput | PaymentOptionUncheckedUpdateWithoutPaymentMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| paymentType | PaymentType | EnumPaymentTypeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| paymentType | PaymentType | EnumPaymentTypeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| street | String | No |
| unit | String | No |
| city | String | No |
| zipcode | String | No |
| state | String | No |
| country | String | No |
| planet | String | Null | Yes |
| solarSystem | String | Null | Yes |
| galaxy | String | Null | Yes |
| localGroup | String | Null | Yes |
| localCluster | String | Null | Yes |
| universe | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userAddress | UserAddressCreateNestedManyWithoutAddressInput | No |
| paymentDetail | PaymentDetailCreateNestedManyWithoutBillingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| street | String | No |
| unit | String | No |
| city | String | No |
| zipcode | String | No |
| state | String | No |
| country | String | No |
| planet | String | Null | Yes |
| solarSystem | String | Null | Yes |
| galaxy | String | Null | Yes |
| localGroup | String | Null | Yes |
| localCluster | String | Null | Yes |
| universe | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userAddress | UserAddressUncheckedCreateNestedManyWithoutAddressInput | No |
| paymentDetail | PaymentDetailUncheckedCreateNestedManyWithoutBillingAddressInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AddressWhereUniqueInput | No |
| create | AddressCreateWithoutShippingDetailInput | AddressUncheckedCreateWithoutShippingDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| price | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| price | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShippingMethodWhereUniqueInput | No |
| create | ShippingMethodCreateWithoutShippingDetailInput | ShippingMethodUncheckedCreateWithoutShippingDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutOrdersInput | No |
| paymentDetail | PaymentDetailCreateNestedOneWithoutOrderInput | No |
| orderDetail | OrderDetailCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| userId | Int | No |
| updatedAt | DateTime | No |
| paymentDetail | PaymentDetailUncheckedCreateNestedOneWithoutOrderInput | No |
| orderDetail | OrderDetailUncheckedCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutShippingDetailInput | OrderUncheckedCreateWithoutShippingDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | AddressUpdateWithoutShippingDetailInput | AddressUncheckedUpdateWithoutShippingDetailInput | No |
| create | AddressCreateWithoutShippingDetailInput | AddressUncheckedCreateWithoutShippingDetailInput | No |
| where | AddressWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AddressWhereInput | No |
| data | AddressUpdateWithoutShippingDetailInput | AddressUncheckedUpdateWithoutShippingDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShippingMethodWhereInput | No |
| data | ShippingMethodUpdateWithoutShippingDetailInput | ShippingMethodUncheckedUpdateWithoutShippingDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrderUpdateWithoutShippingDetailInput | OrderUncheckedUpdateWithoutShippingDetailInput | No |
| create | OrderCreateWithoutShippingDetailInput | OrderUncheckedCreateWithoutShippingDetailInput | No |
| where | OrderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereInput | No |
| data | OrderUpdateWithoutShippingDetailInput | OrderUncheckedUpdateWithoutShippingDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| status | OrderStatusType | EnumOrderStatusTypeFieldUpdateOperationsInput | No |
| tax | Decimal | DecimalFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutOrdersNestedInput | No |
| paymentDetail | PaymentDetailUpdateOneWithoutOrderNestedInput | No |
| orderDetail | OrderDetailUpdateManyWithoutOrderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| status | OrderStatusType | EnumOrderStatusTypeFieldUpdateOperationsInput | No |
| tax | Decimal | DecimalFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| paymentDetail | PaymentDetailUncheckedUpdateOneWithoutOrderNestedInput | No |
| orderDetail | OrderDetailUncheckedUpdateManyWithoutOrderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| estimatedArrival | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| shippingAddress | AddressCreateNestedOneWithoutShippingDetailInput | No |
| order | OrderCreateNestedOneWithoutShippingDetailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| estimatedArrival | DateTime | No |
| shippingAddressId | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShippingDetailWhereUniqueInput | No |
| create | ShippingDetailCreateWithoutShippingMethodInput | ShippingDetailUncheckedCreateWithoutShippingMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ShippingDetailCreateManyShippingMethodInput | ShippingDetailCreateManyShippingMethodInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShippingDetailWhereUniqueInput | No |
| data | ShippingDetailUpdateWithoutShippingMethodInput | ShippingDetailUncheckedUpdateWithoutShippingMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShippingDetailScalarWhereInput | No |
| data | ShippingDetailUpdateManyMutationInput | ShippingDetailUncheckedUpdateManyWithoutShippingMethodInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenCreateNestedOneWithoutUserInput | No |
| profile | UserProfileCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewCreateNestedManyWithoutAuthorInput | No |
| cart | CartCreateNestedOneWithoutUserInput | No |
| login | LoginCreateNestedOneWithoutUserInput | No |
| paymentMethod | PaymentMethodCreateNestedManyWithoutUserInput | No |
| orders | OrderCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | No |
| authenticationToken | AuthenticationTokenUncheckedCreateNestedOneWithoutUserInput | No |
| profile | UserProfileUncheckedCreateNestedOneWithoutUserInput | No |
| authoredReviews | UserReviewUncheckedCreateNestedManyWithoutAuthorInput | No |
| cart | CartUncheckedCreateNestedOneWithoutUserInput | No |
| login | LoginUncheckedCreateNestedOneWithoutUserInput | No |
| paymentMethod | PaymentMethodUncheckedCreateNestedManyWithoutUserInput | No |
| orders | OrderUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutRolesInput | UserUncheckedCreateWithoutRolesInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| permissions | RolePermissionCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| permissions | RolePermissionUncheckedCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereUniqueInput | No |
| create | RoleCreateWithoutUsersInput | RoleUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutRolesInput | UserUncheckedUpdateWithoutRolesInput | No |
| create | UserCreateWithoutRolesInput | UserUncheckedCreateWithoutRolesInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutRolesInput | UserUncheckedUpdateWithoutRolesInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUpdateOneWithoutUserNestedInput | No |
| login | LoginUpdateOneWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUpdateManyWithoutUserNestedInput | No |
| orders | OrderUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| preference | NullableJsonNullValueInput | Json | No |
| balance | Int | IntFieldUpdateOperationsInput | No |
| authenticationToken | AuthenticationTokenUncheckedUpdateOneWithoutUserNestedInput | No |
| profile | UserProfileUncheckedUpdateOneWithoutUserNestedInput | No |
| authoredReviews | UserReviewUncheckedUpdateManyWithoutAuthorNestedInput | No |
| cart | CartUncheckedUpdateOneWithoutUserNestedInput | No |
| login | LoginUncheckedUpdateOneWithoutUserNestedInput | No |
| paymentMethod | PaymentMethodUncheckedUpdateManyWithoutUserNestedInput | No |
| orders | OrderUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RoleUpdateWithoutUsersInput | RoleUncheckedUpdateWithoutUsersInput | No |
| create | RoleCreateWithoutUsersInput | RoleUncheckedCreateWithoutUsersInput | No |
| where | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereInput | No |
| data | RoleUpdateWithoutUsersInput | RoleUncheckedUpdateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| permissions | RolePermissionUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| permissions | RolePermissionUncheckedUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutRolesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleWhereUniqueInput | No |
| create | UserRoleCreateWithoutRoleInput | UserRoleUncheckedCreateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserRoleCreateManyRoleInput | UserRoleCreateManyRoleInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| permission | PermissionCreateNestedOneWithoutRolesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| permissionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | RolePermissionWhereUniqueInput | No |
| create | RolePermissionCreateWithoutRoleInput | RolePermissionUncheckedCreateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RolePermissionCreateManyRoleInput | RolePermissionCreateManyRoleInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleWhereUniqueInput | No |
| update | UserRoleUpdateWithoutRoleInput | UserRoleUncheckedUpdateWithoutRoleInput | No |
| create | UserRoleCreateWithoutRoleInput | UserRoleUncheckedCreateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleWhereUniqueInput | No |
| data | UserRoleUpdateWithoutRoleInput | UserRoleUncheckedUpdateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleScalarWhereInput | No |
| data | UserRoleUpdateManyMutationInput | UserRoleUncheckedUpdateManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RolePermissionWhereUniqueInput | No |
| update | RolePermissionUpdateWithoutRoleInput | RolePermissionUncheckedUpdateWithoutRoleInput | No |
| create | RolePermissionCreateWithoutRoleInput | RolePermissionUncheckedCreateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RolePermissionWhereUniqueInput | No |
| data | RolePermissionUpdateWithoutRoleInput | RolePermissionUncheckedUpdateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RolePermissionScalarWhereInput | No |
| data | RolePermissionUpdateManyMutationInput | RolePermissionUncheckedUpdateManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RolePermissionScalarWhereInput | RolePermissionScalarWhereInput[] | No |
| OR | RolePermissionScalarWhereInput[] | No |
| NOT | RolePermissionScalarWhereInput | RolePermissionScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| roleId | IntFilter | Int | No |
| permissionId | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| users | UserRoleCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| users | UserRoleUncheckedCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereUniqueInput | No |
| create | RoleCreateWithoutPermissionsInput | RoleUncheckedCreateWithoutPermissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource | String | No |
| accessType | AccessType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resource | String | No |
| accessType | AccessType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PermissionWhereUniqueInput | No |
| create | PermissionCreateWithoutRolesInput | PermissionUncheckedCreateWithoutRolesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RoleUpdateWithoutPermissionsInput | RoleUncheckedUpdateWithoutPermissionsInput | No |
| create | RoleCreateWithoutPermissionsInput | RoleUncheckedCreateWithoutPermissionsInput | No |
| where | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereInput | No |
| data | RoleUpdateWithoutPermissionsInput | RoleUncheckedUpdateWithoutPermissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| users | UserRoleUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| users | UserRoleUncheckedUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PermissionUpdateWithoutRolesInput | PermissionUncheckedUpdateWithoutRolesInput | No |
| create | PermissionCreateWithoutRolesInput | PermissionUncheckedCreateWithoutRolesInput | No |
| where | PermissionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PermissionWhereInput | No |
| data | PermissionUpdateWithoutRolesInput | PermissionUncheckedUpdateWithoutRolesInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource | String | StringFieldUpdateOperationsInput | No |
| accessType | AccessType | EnumAccessTypeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| resource | String | StringFieldUpdateOperationsInput | No |
| accessType | AccessType | EnumAccessTypeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| role | RoleCreateNestedOneWithoutPermissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| roleId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | RolePermissionWhereUniqueInput | No |
| create | RolePermissionCreateWithoutPermissionInput | RolePermissionUncheckedCreateWithoutPermissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RolePermissionCreateManyPermissionInput | RolePermissionCreateManyPermissionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | RolePermissionWhereUniqueInput | No |
| update | RolePermissionUpdateWithoutPermissionInput | RolePermissionUncheckedUpdateWithoutPermissionInput | No |
| create | RolePermissionCreateWithoutPermissionInput | RolePermissionUncheckedCreateWithoutPermissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RolePermissionWhereUniqueInput | No |
| data | RolePermissionUpdateWithoutPermissionInput | RolePermissionUncheckedUpdateWithoutPermissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RolePermissionScalarWhereInput | No |
| data | RolePermissionUpdateManyMutationInput | RolePermissionUncheckedUpdateManyWithoutPermissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| orderId | String | No |
| quantity | Int | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| cartId | Int | No |
| quantity | Int | No |
| promotionId | Int | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| quantity | Int | No |
| reStockLevel | Int | Null | Yes |
| status | InventoryStatus | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| imageUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| title | String | No |
| message | String | No |
| rating | Int | No |
| authorId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| order | OrderUpdateOneRequiredWithoutOrderDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cart | CartUpdateOneRequiredWithoutCartItemsNestedInput | No |
| Promotion | PromotionUpdateOneWithoutCartItemNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| cartId | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| promotionId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| cartId | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| promotionId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | IntFieldUpdateOperationsInput | No |
| reStockLevel | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| status | InventoryStatus | EnumInventoryStatusFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| reStockLevel | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| status | InventoryStatus | EnumInventoryStatusFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| reStockLevel | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| status | InventoryStatus | EnumInventoryStatusFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| imageUrl | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| imageUrl | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| imageUrl | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | StringFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutAuthoredReviewsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| authorId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| authorId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | Null | Yes |
| grade | Grade | Null | Yes |
| sku | String | Null | Yes |
| price | Decimal | No |
| msrp | Decimal | Null | Yes |
| size | String | Null | Yes |
| weight | Decimal | Null | Yes |
| weightUnit | String | Null | Yes |
| features | NullableJsonNullValueInput | Json | No |
| quantity | Int | Null | Yes |
| soldQuantity | Int | Null | Yes |
| isActive | Boolean | Null | Yes |
| isAvailable | Boolean | Null | Yes |
| slug | String | Null | Yes |
| imageUrl | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| promotionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| categoryName | String | StringFieldUpdateOperationsInput | No |
| categoryDesc | String | StringFieldUpdateOperationsInput | No |
| slug | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| childCategories | CategoryUpdateManyWithoutParentCategoryNestedInput | No |
| product | ProductUpdateManyWithoutCategoryNestedInput | No |
| promotionCategory | PromotionCategoryUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| categoryName | String | StringFieldUpdateOperationsInput | No |
| categoryDesc | String | StringFieldUpdateOperationsInput | No |
| slug | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| childCategories | CategoryUncheckedUpdateManyWithoutParentCategoryNestedInput | No |
| product | ProductUncheckedUpdateManyWithoutCategoryNestedInput | No |
| promotionCategory | PromotionCategoryUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| categoryName | String | StringFieldUpdateOperationsInput | No |
| categoryDesc | String | StringFieldUpdateOperationsInput | No |
| slug | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| promotion | PromotionUpdateOneRequiredWithoutPromotionCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| promotionId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| promotionId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| title | String | No |
| message | String | No |
| rating | Int | No |
| productId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| roleId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| paymentDetailId | Int | No |
| paymentOptionId | Int | No |
| cardProvider | String | Null | Yes |
| nameOnCard | String | Null | Yes |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | StringFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| product | ProductUpdateOneRequiredWithoutReviewsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| role | RoleUpdateOneRequiredWithoutUsersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| roleId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| roleId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| cardProvider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nameOnCard | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| paymentDetail | PaymentDetailUpdateOneRequiredWithoutPaymentMethodNestedInput | No |
| paymentOption | PaymentOptionUpdateOneRequiredWithoutPaymentMethodNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| paymentDetailId | Int | IntFieldUpdateOperationsInput | No |
| paymentOptionId | Int | IntFieldUpdateOperationsInput | No |
| cardProvider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nameOnCard | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| paymentDetailId | Int | IntFieldUpdateOperationsInput | No |
| paymentOptionId | Int | IntFieldUpdateOperationsInput | No |
| cardProvider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nameOnCard | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| status | OrderStatusType | EnumOrderStatusTypeFieldUpdateOperationsInput | No |
| tax | Decimal | DecimalFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingDetail | ShippingDetailUpdateOneWithoutOrderNestedInput | No |
| paymentDetail | PaymentDetailUpdateOneWithoutOrderNestedInput | No |
| orderDetail | OrderDetailUpdateManyWithoutOrderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| status | OrderStatusType | EnumOrderStatusTypeFieldUpdateOperationsInput | No |
| tax | Decimal | DecimalFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingDetail | ShippingDetailUncheckedUpdateOneWithoutOrderNestedInput | No |
| paymentDetail | PaymentDetailUncheckedUpdateOneWithoutOrderNestedInput | No |
| orderDetail | OrderDetailUncheckedUpdateManyWithoutOrderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| status | OrderStatusType | EnumOrderStatusTypeFieldUpdateOperationsInput | No |
| tax | Decimal | DecimalFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| addressId | Int | No |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| socialProvider | String | No |
| socialUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| address | AddressUpdateOneRequiredWithoutUserAddressNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| addressId | Int | IntFieldUpdateOperationsInput | No |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| addressId | Int | IntFieldUpdateOperationsInput | No |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| socialProvider | String | StringFieldUpdateOperationsInput | No |
| socialUrl | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| socialProvider | String | StringFieldUpdateOperationsInput | No |
| socialUrl | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| socialProvider | String | StringFieldUpdateOperationsInput | No |
| socialUrl | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId | Int | No |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| estimatedArrival | DateTime | No |
| shippingMethodId | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userProfile | UserProfileUpdateOneRequiredWithoutUserAddressNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userProfileId | Int | IntFieldUpdateOperationsInput | No |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userProfileId | Int | IntFieldUpdateOperationsInput | No |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| paymentMethod | PaymentMethodUpdateManyWithoutPaymentDetailNestedInput | No |
| order | OrderUpdateOneRequiredWithoutPaymentDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| paymentMethod | PaymentMethodUncheckedUpdateManyWithoutPaymentDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| estimatedArrival | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingMethod | ShippingMethodUpdateOneRequiredWithoutShippingDetailNestedInput | No |
| order | OrderUpdateOneRequiredWithoutShippingDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| estimatedArrival | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingMethodId | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| estimatedArrival | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingMethodId | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| category | CategoryUpdateOneRequiredWithoutPromotionCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| categoryId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| categoryId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productId | Int | No |
| quantity | Int | No |
| promotionId | Int | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| product | ProductUpdateOneRequiredWithoutCartItemNestedInput | No |
| Promotion | PromotionUpdateOneWithoutCartItemNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| promotionId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| promotionId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productId | Int | No |
| quantity | Int | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| product | ProductUpdateOneRequiredWithoutOrderDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| productId | Int | IntFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| total | Decimal | DecimalFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| paymentOptionId | Int | No |
| cardProvider | String | Null | Yes |
| nameOnCard | String | Null | Yes |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| cardProvider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nameOnCard | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutPaymentMethodNestedInput | No |
| paymentOption | PaymentOptionUpdateOneRequiredWithoutPaymentMethodNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| paymentOptionId | Int | IntFieldUpdateOperationsInput | No |
| cardProvider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nameOnCard | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| paymentOptionId | Int | IntFieldUpdateOperationsInput | No |
| cardProvider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nameOnCard | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| paymentDetailId | Int | No |
| cardProvider | String | Null | Yes |
| nameOnCard | String | Null | Yes |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| cardProvider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nameOnCard | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutPaymentMethodNestedInput | No |
| paymentDetail | PaymentDetailUpdateOneRequiredWithoutPaymentMethodNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| paymentDetailId | Int | IntFieldUpdateOperationsInput | No |
| cardProvider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nameOnCard | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| paymentDetailId | Int | IntFieldUpdateOperationsInput | No |
| cardProvider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nameOnCard | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isDefault | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| estimatedArrival | DateTime | No |
| shippingAddressId | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| estimatedArrival | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingAddress | AddressUpdateOneRequiredWithoutShippingDetailNestedInput | No |
| order | OrderUpdateOneRequiredWithoutShippingDetailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| estimatedArrival | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingAddressId | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| estimatedArrival | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shippingAddressId | Int | IntFieldUpdateOperationsInput | No |
| orderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| permissionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutRolesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| permission | PermissionUpdateOneRequiredWithoutRolesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| permissionId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| permissionId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| roleId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| role | RoleUpdateOneRequiredWithoutPermissionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| roleId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| roleId | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| productName | String | Yes |
| productDesc | String | Yes |
| shortDesc | String | No |
| grade | Grade | No |
| sku | String | No |
| price | Decimal | Yes |
| msrp | Decimal | No |
| size | String | No |
| weight | Decimal | No |
| weightUnit | String | No |
| features | Json | No |
| quantity | Int | No |
| soldQuantity | Int | No |
| isActive | Boolean | No |
| isAvailable | Boolean | No |
| slug | String | No |
| imageUrl | String | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| categoryId | Int | Yes |
| category | Category | Yes |
| orderDetail | OrderDetail[] | No |
| cartItem | CartItem[] | No |
| productInventory | ProductInventory[] | No |
| productImage | ProductImage[] | No |
| reviews | UserReview[] | No |
| _count | ProductCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| categoryName | String | Yes |
| categoryDesc | String | Yes |
| slug | String | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| parentCategoryId | Int | No |
| parentCategory | Category | No |
| childCategories | Category[] | No |
| product | Product[] | No |
| promotionCategory | PromotionCategory[] | No |
| _count | CategoryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| quantity | Int | Yes |
| reStockLevel | Int | No |
| status | InventoryStatus | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| productId | Int | Yes |
| product | Product | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| imageUrl | String | Yes |
| productId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| product | Product | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| String | Yes | |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| preference | Json | No |
| balance | Int | Yes |
| authenticationToken | AuthenticationToken | No |
| profile | UserProfile | No |
| authoredReviews | UserReview[] | No |
| cart | Cart | No |
| login | Login | No |
| roles | UserRole[] | No |
| paymentMethod | PaymentMethod[] | No |
| orders | Order[] | No |
| _count | UserCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| username | String | Yes |
| password | String | Yes |
| failedAttempts | Int | Yes |
| lockoutTime | DateTime | No |
| lastLogin | DateTime | No |
| userId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| token | String | Yes |
| expiry | DateTime | No |
| userId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| firstName | String | No |
| lastName | String | No |
| phone | String | No |
| birthDate | DateTime | No |
| gender | Gender | No |
| photo | String | No |
| bio | String | No |
| userId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| userAddress | UserAddress[] | No |
| socialLinks | SocialLink[] | No |
| user | User | Yes |
| _count | UserProfileCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userProfileId | Int | Yes |
| addressId | Int | Yes |
| isDefault | Boolean | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| userProfile | UserProfile | Yes |
| address | Address | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| street | String | Yes |
| unit | String | Yes |
| city | String | Yes |
| zipcode | String | Yes |
| state | String | Yes |
| country | String | Yes |
| planet | String | No |
| solarSystem | String | No |
| galaxy | String | No |
| localGroup | String | No |
| localCluster | String | No |
| universe | String | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| userAddress | UserAddress[] | No |
| paymentDetail | PaymentDetail[] | No |
| shippingDetail | ShippingDetail[] | No |
| _count | AddressCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userProfileId | Int | Yes |
| socialProvider | String | Yes |
| socialUrl | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| UserProfile | UserProfile | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| title | String | Yes |
| message | String | Yes |
| rating | Int | Yes |
| authorId | Int | Yes |
| productId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| author | User | Yes |
| product | Product | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| categoryId | Int | Yes |
| promotionId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| category | Category | Yes |
| promotion | Promotion | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| promotionName | String | Yes |
| promotionDesc | String | Yes |
| promotionRate | Int | Yes |
| isActive | Boolean | Yes |
| startDate | DateTime | Yes |
| endDate | DateTime | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| promotionCategory | PromotionCategory[] | No |
| CartItem | CartItem | No |
| _count | PromotionCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| cartId | Int | Yes |
| productId | Int | Yes |
| quantity | Int | Yes |
| promotionId | Int | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| cart | Cart | Yes |
| product | Product | Yes |
| Promotion | Promotion | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| user | User | Yes |
| cartItems | CartItem[] | No |
| _count | CartCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| status | OrderStatusType | Yes |
| tax | Decimal | Yes |
| total | Decimal | Yes |
| createdAt | DateTime | Yes |
| userId | Int | Yes |
| updatedAt | DateTime | Yes |
| user | User | Yes |
| shippingDetail | ShippingDetail | No |
| paymentDetail | PaymentDetail | No |
| orderDetail | OrderDetail[] | No |
| _count | OrderCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| orderId | String | Yes |
| productId | Int | Yes |
| quantity | Int | Yes |
| total | Decimal | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| product | Product | Yes |
| order | Order | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| billingAddressId | Int | Yes |
| orderId | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| paymentMethod | PaymentMethod[] | No |
| billingAddress | Address | Yes |
| order | Order | Yes |
| _count | PaymentDetailCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| paymentType | PaymentType | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| paymentMethod | PaymentMethod[] | No |
| _count | PaymentOptionCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userId | Int | Yes |
| paymentDetailId | Int | Yes |
| paymentOptionId | Int | Yes |
| cardProvider | String | No |
| nameOnCard | String | No |
| isDefault | Boolean | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| user | User | Yes |
| paymentDetail | PaymentDetail | Yes |
| paymentOption | PaymentOption | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| estimatedArrival | DateTime | Yes |
| shippingAddressId | Int | Yes |
| shippingMethodId | Int | Yes |
| orderId | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| shippingAddress | Address | Yes |
| shippingMethod | ShippingMethod | Yes |
| order | Order | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| price | Decimal | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| shippingDetail | ShippingDetail[] | No |
| _count | ShippingMethodCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userId | Int | Yes |
| roleId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| user | User | Yes |
| role | Role | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| users | UserRole[] | No |
| permissions | RolePermission[] | No |
| _count | RoleCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| roleId | Int | Yes |
| permissionId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| role | Role | Yes |
| permission | Permission | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| resource | String | Yes |
| accessType | AccessType | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| roles | RolePermission[] | No |
| _count | PermissionCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | ProductCountAggregateOutputType | No |
| _avg | ProductAvgAggregateOutputType | No |
| _sum | ProductSumAggregateOutputType | No |
| _min | ProductMinAggregateOutputType | No |
| _max | ProductMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| productName | String | Yes |
| productDesc | String | Yes |
| shortDesc | String | No |
| grade | Grade | No |
| sku | String | No |
| price | Decimal | Yes |
| msrp | Decimal | No |
| size | String | No |
| weight | Decimal | No |
| weightUnit | String | No |
| features | Json | No |
| quantity | Int | No |
| soldQuantity | Int | No |
| isActive | Boolean | No |
| isAvailable | Boolean | No |
| slug | String | No |
| imageUrl | String | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| categoryId | Int | Yes |
| _count | ProductCountAggregateOutputType | No |
| _avg | ProductAvgAggregateOutputType | No |
| _sum | ProductSumAggregateOutputType | No |
| _min | ProductMinAggregateOutputType | No |
| _max | ProductMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CategoryCountAggregateOutputType | No |
| _avg | CategoryAvgAggregateOutputType | No |
| _sum | CategorySumAggregateOutputType | No |
| _min | CategoryMinAggregateOutputType | No |
| _max | CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| categoryName | String | Yes |
| categoryDesc | String | Yes |
| slug | String | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| parentCategoryId | Int | No |
| _count | CategoryCountAggregateOutputType | No |
| _avg | CategoryAvgAggregateOutputType | No |
| _sum | CategorySumAggregateOutputType | No |
| _min | CategoryMinAggregateOutputType | No |
| _max | CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ProductInventoryCountAggregateOutputType | No |
| _avg | ProductInventoryAvgAggregateOutputType | No |
| _sum | ProductInventorySumAggregateOutputType | No |
| _min | ProductInventoryMinAggregateOutputType | No |
| _max | ProductInventoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| quantity | Int | Yes |
| reStockLevel | Int | No |
| status | InventoryStatus | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| productId | Int | Yes |
| _count | ProductInventoryCountAggregateOutputType | No |
| _avg | ProductInventoryAvgAggregateOutputType | No |
| _sum | ProductInventorySumAggregateOutputType | No |
| _min | ProductInventoryMinAggregateOutputType | No |
| _max | ProductInventoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ProductImageCountAggregateOutputType | No |
| _avg | ProductImageAvgAggregateOutputType | No |
| _sum | ProductImageSumAggregateOutputType | No |
| _min | ProductImageMinAggregateOutputType | No |
| _max | ProductImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| imageUrl | String | Yes |
| productId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | ProductImageCountAggregateOutputType | No |
| _avg | ProductImageAvgAggregateOutputType | No |
| _sum | ProductImageSumAggregateOutputType | No |
| _min | ProductImageMinAggregateOutputType | No |
| _max | ProductImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserCountAggregateOutputType | No |
| _avg | UserAvgAggregateOutputType | No |
| _sum | UserSumAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| String | Yes | |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| preference | Json | No |
| balance | Int | Yes |
| _count | UserCountAggregateOutputType | No |
| _avg | UserAvgAggregateOutputType | No |
| _sum | UserSumAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LoginCountAggregateOutputType | No |
| _avg | LoginAvgAggregateOutputType | No |
| _sum | LoginSumAggregateOutputType | No |
| _min | LoginMinAggregateOutputType | No |
| _max | LoginMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| username | String | Yes |
| password | String | Yes |
| failedAttempts | Int | Yes |
| lockoutTime | DateTime | No |
| lastLogin | DateTime | No |
| userId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | LoginCountAggregateOutputType | No |
| _avg | LoginAvgAggregateOutputType | No |
| _sum | LoginSumAggregateOutputType | No |
| _min | LoginMinAggregateOutputType | No |
| _max | LoginMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AuthenticationTokenCountAggregateOutputType | No |
| _avg | AuthenticationTokenAvgAggregateOutputType | No |
| _sum | AuthenticationTokenSumAggregateOutputType | No |
| _min | AuthenticationTokenMinAggregateOutputType | No |
| _max | AuthenticationTokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| token | String | Yes |
| expiry | DateTime | No |
| userId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | AuthenticationTokenCountAggregateOutputType | No |
| _avg | AuthenticationTokenAvgAggregateOutputType | No |
| _sum | AuthenticationTokenSumAggregateOutputType | No |
| _min | AuthenticationTokenMinAggregateOutputType | No |
| _max | AuthenticationTokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserProfileCountAggregateOutputType | No |
| _avg | UserProfileAvgAggregateOutputType | No |
| _sum | UserProfileSumAggregateOutputType | No |
| _min | UserProfileMinAggregateOutputType | No |
| _max | UserProfileMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| firstName | String | No |
| lastName | String | No |
| phone | String | No |
| birthDate | DateTime | No |
| gender | Gender | No |
| photo | String | No |
| bio | String | No |
| userId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | UserProfileCountAggregateOutputType | No |
| _avg | UserProfileAvgAggregateOutputType | No |
| _sum | UserProfileSumAggregateOutputType | No |
| _min | UserProfileMinAggregateOutputType | No |
| _max | UserProfileMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserAddressCountAggregateOutputType | No |
| _avg | UserAddressAvgAggregateOutputType | No |
| _sum | UserAddressSumAggregateOutputType | No |
| _min | UserAddressMinAggregateOutputType | No |
| _max | UserAddressMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userProfileId | Int | Yes |
| addressId | Int | Yes |
| isDefault | Boolean | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | UserAddressCountAggregateOutputType | No |
| _avg | UserAddressAvgAggregateOutputType | No |
| _sum | UserAddressSumAggregateOutputType | No |
| _min | UserAddressMinAggregateOutputType | No |
| _max | UserAddressMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AddressCountAggregateOutputType | No |
| _avg | AddressAvgAggregateOutputType | No |
| _sum | AddressSumAggregateOutputType | No |
| _min | AddressMinAggregateOutputType | No |
| _max | AddressMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| street | String | Yes |
| unit | String | Yes |
| city | String | Yes |
| zipcode | String | Yes |
| state | String | Yes |
| country | String | Yes |
| planet | String | No |
| solarSystem | String | No |
| galaxy | String | No |
| localGroup | String | No |
| localCluster | String | No |
| universe | String | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | AddressCountAggregateOutputType | No |
| _avg | AddressAvgAggregateOutputType | No |
| _sum | AddressSumAggregateOutputType | No |
| _min | AddressMinAggregateOutputType | No |
| _max | AddressMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SocialLinkCountAggregateOutputType | No |
| _avg | SocialLinkAvgAggregateOutputType | No |
| _sum | SocialLinkSumAggregateOutputType | No |
| _min | SocialLinkMinAggregateOutputType | No |
| _max | SocialLinkMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userProfileId | Int | Yes |
| socialProvider | String | Yes |
| socialUrl | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | SocialLinkCountAggregateOutputType | No |
| _avg | SocialLinkAvgAggregateOutputType | No |
| _sum | SocialLinkSumAggregateOutputType | No |
| _min | SocialLinkMinAggregateOutputType | No |
| _max | SocialLinkMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserReviewCountAggregateOutputType | No |
| _avg | UserReviewAvgAggregateOutputType | No |
| _sum | UserReviewSumAggregateOutputType | No |
| _min | UserReviewMinAggregateOutputType | No |
| _max | UserReviewMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| title | String | Yes |
| message | String | Yes |
| rating | Int | Yes |
| authorId | Int | Yes |
| productId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | UserReviewCountAggregateOutputType | No |
| _avg | UserReviewAvgAggregateOutputType | No |
| _sum | UserReviewSumAggregateOutputType | No |
| _min | UserReviewMinAggregateOutputType | No |
| _max | UserReviewMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PromotionCategoryCountAggregateOutputType | No |
| _avg | PromotionCategoryAvgAggregateOutputType | No |
| _sum | PromotionCategorySumAggregateOutputType | No |
| _min | PromotionCategoryMinAggregateOutputType | No |
| _max | PromotionCategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| categoryId | Int | Yes |
| promotionId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | PromotionCategoryCountAggregateOutputType | No |
| _avg | PromotionCategoryAvgAggregateOutputType | No |
| _sum | PromotionCategorySumAggregateOutputType | No |
| _min | PromotionCategoryMinAggregateOutputType | No |
| _max | PromotionCategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PromotionCountAggregateOutputType | No |
| _avg | PromotionAvgAggregateOutputType | No |
| _sum | PromotionSumAggregateOutputType | No |
| _min | PromotionMinAggregateOutputType | No |
| _max | PromotionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| promotionName | String | Yes |
| promotionDesc | String | Yes |
| promotionRate | Int | Yes |
| isActive | Boolean | Yes |
| startDate | DateTime | Yes |
| endDate | DateTime | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | PromotionCountAggregateOutputType | No |
| _avg | PromotionAvgAggregateOutputType | No |
| _sum | PromotionSumAggregateOutputType | No |
| _min | PromotionMinAggregateOutputType | No |
| _max | PromotionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CartItemCountAggregateOutputType | No |
| _avg | CartItemAvgAggregateOutputType | No |
| _sum | CartItemSumAggregateOutputType | No |
| _min | CartItemMinAggregateOutputType | No |
| _max | CartItemMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| cartId | Int | Yes |
| productId | Int | Yes |
| quantity | Int | Yes |
| promotionId | Int | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | CartItemCountAggregateOutputType | No |
| _avg | CartItemAvgAggregateOutputType | No |
| _sum | CartItemSumAggregateOutputType | No |
| _min | CartItemMinAggregateOutputType | No |
| _max | CartItemMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CartCountAggregateOutputType | No |
| _avg | CartAvgAggregateOutputType | No |
| _sum | CartSumAggregateOutputType | No |
| _min | CartMinAggregateOutputType | No |
| _max | CartMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | CartCountAggregateOutputType | No |
| _avg | CartAvgAggregateOutputType | No |
| _sum | CartSumAggregateOutputType | No |
| _min | CartMinAggregateOutputType | No |
| _max | CartMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrderCountAggregateOutputType | No |
| _avg | OrderAvgAggregateOutputType | No |
| _sum | OrderSumAggregateOutputType | No |
| _min | OrderMinAggregateOutputType | No |
| _max | OrderMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| status | OrderStatusType | Yes |
| tax | Decimal | Yes |
| total | Decimal | Yes |
| createdAt | DateTime | Yes |
| userId | Int | Yes |
| updatedAt | DateTime | Yes |
| _count | OrderCountAggregateOutputType | No |
| _avg | OrderAvgAggregateOutputType | No |
| _sum | OrderSumAggregateOutputType | No |
| _min | OrderMinAggregateOutputType | No |
| _max | OrderMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrderDetailCountAggregateOutputType | No |
| _avg | OrderDetailAvgAggregateOutputType | No |
| _sum | OrderDetailSumAggregateOutputType | No |
| _min | OrderDetailMinAggregateOutputType | No |
| _max | OrderDetailMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| orderId | String | Yes |
| productId | Int | Yes |
| quantity | Int | Yes |
| total | Decimal | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | OrderDetailCountAggregateOutputType | No |
| _avg | OrderDetailAvgAggregateOutputType | No |
| _sum | OrderDetailSumAggregateOutputType | No |
| _min | OrderDetailMinAggregateOutputType | No |
| _max | OrderDetailMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PaymentDetailCountAggregateOutputType | No |
| _avg | PaymentDetailAvgAggregateOutputType | No |
| _sum | PaymentDetailSumAggregateOutputType | No |
| _min | PaymentDetailMinAggregateOutputType | No |
| _max | PaymentDetailMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| billingAddressId | Int | Yes |
| orderId | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | PaymentDetailCountAggregateOutputType | No |
| _avg | PaymentDetailAvgAggregateOutputType | No |
| _sum | PaymentDetailSumAggregateOutputType | No |
| _min | PaymentDetailMinAggregateOutputType | No |
| _max | PaymentDetailMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PaymentOptionCountAggregateOutputType | No |
| _avg | PaymentOptionAvgAggregateOutputType | No |
| _sum | PaymentOptionSumAggregateOutputType | No |
| _min | PaymentOptionMinAggregateOutputType | No |
| _max | PaymentOptionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| paymentType | PaymentType | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | PaymentOptionCountAggregateOutputType | No |
| _avg | PaymentOptionAvgAggregateOutputType | No |
| _sum | PaymentOptionSumAggregateOutputType | No |
| _min | PaymentOptionMinAggregateOutputType | No |
| _max | PaymentOptionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PaymentMethodCountAggregateOutputType | No |
| _avg | PaymentMethodAvgAggregateOutputType | No |
| _sum | PaymentMethodSumAggregateOutputType | No |
| _min | PaymentMethodMinAggregateOutputType | No |
| _max | PaymentMethodMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userId | Int | Yes |
| paymentDetailId | Int | Yes |
| paymentOptionId | Int | Yes |
| cardProvider | String | No |
| nameOnCard | String | No |
| isDefault | Boolean | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | PaymentMethodCountAggregateOutputType | No |
| _avg | PaymentMethodAvgAggregateOutputType | No |
| _sum | PaymentMethodSumAggregateOutputType | No |
| _min | PaymentMethodMinAggregateOutputType | No |
| _max | PaymentMethodMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ShippingDetailCountAggregateOutputType | No |
| _avg | ShippingDetailAvgAggregateOutputType | No |
| _sum | ShippingDetailSumAggregateOutputType | No |
| _min | ShippingDetailMinAggregateOutputType | No |
| _max | ShippingDetailMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| estimatedArrival | DateTime | Yes |
| shippingAddressId | Int | Yes |
| shippingMethodId | Int | Yes |
| orderId | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | ShippingDetailCountAggregateOutputType | No |
| _avg | ShippingDetailAvgAggregateOutputType | No |
| _sum | ShippingDetailSumAggregateOutputType | No |
| _min | ShippingDetailMinAggregateOutputType | No |
| _max | ShippingDetailMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ShippingMethodCountAggregateOutputType | No |
| _avg | ShippingMethodAvgAggregateOutputType | No |
| _sum | ShippingMethodSumAggregateOutputType | No |
| _min | ShippingMethodMinAggregateOutputType | No |
| _max | ShippingMethodMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| price | Decimal | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | ShippingMethodCountAggregateOutputType | No |
| _avg | ShippingMethodAvgAggregateOutputType | No |
| _sum | ShippingMethodSumAggregateOutputType | No |
| _min | ShippingMethodMinAggregateOutputType | No |
| _max | ShippingMethodMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | InvoiceCountAggregateOutputType | No |
| _min | InvoiceMinAggregateOutputType | No |
| _max | InvoiceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| _count | InvoiceCountAggregateOutputType | No |
| _min | InvoiceMinAggregateOutputType | No |
| _max | InvoiceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserRoleCountAggregateOutputType | No |
| _avg | UserRoleAvgAggregateOutputType | No |
| _sum | UserRoleSumAggregateOutputType | No |
| _min | UserRoleMinAggregateOutputType | No |
| _max | UserRoleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userId | Int | Yes |
| roleId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | UserRoleCountAggregateOutputType | No |
| _avg | UserRoleAvgAggregateOutputType | No |
| _sum | UserRoleSumAggregateOutputType | No |
| _min | UserRoleMinAggregateOutputType | No |
| _max | UserRoleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RoleCountAggregateOutputType | No |
| _avg | RoleAvgAggregateOutputType | No |
| _sum | RoleSumAggregateOutputType | No |
| _min | RoleMinAggregateOutputType | No |
| _max | RoleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | RoleCountAggregateOutputType | No |
| _avg | RoleAvgAggregateOutputType | No |
| _sum | RoleSumAggregateOutputType | No |
| _min | RoleMinAggregateOutputType | No |
| _max | RoleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RolePermissionCountAggregateOutputType | No |
| _avg | RolePermissionAvgAggregateOutputType | No |
| _sum | RolePermissionSumAggregateOutputType | No |
| _min | RolePermissionMinAggregateOutputType | No |
| _max | RolePermissionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| roleId | Int | Yes |
| permissionId | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | RolePermissionCountAggregateOutputType | No |
| _avg | RolePermissionAvgAggregateOutputType | No |
| _sum | RolePermissionSumAggregateOutputType | No |
| _min | RolePermissionMinAggregateOutputType | No |
| _max | RolePermissionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PermissionCountAggregateOutputType | No |
| _avg | PermissionAvgAggregateOutputType | No |
| _sum | PermissionSumAggregateOutputType | No |
| _min | PermissionMinAggregateOutputType | No |
| _max | PermissionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| resource | String | Yes |
| accessType | AccessType | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | PermissionCountAggregateOutputType | No |
| _avg | PermissionAvgAggregateOutputType | No |
| _sum | PermissionSumAggregateOutputType | No |
| _min | PermissionMinAggregateOutputType | No |
| _max | PermissionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| orderDetail | Int | Yes |
| cartItem | Int | Yes |
| productInventory | Int | Yes |
| productImage | Int | Yes |
| reviews | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| productName | Int | Yes |
| productDesc | Int | Yes |
| shortDesc | Int | Yes |
| grade | Int | Yes |
| sku | Int | Yes |
| price | Int | Yes |
| msrp | Int | Yes |
| size | Int | Yes |
| weight | Int | Yes |
| weightUnit | Int | Yes |
| features | Int | Yes |
| quantity | Int | Yes |
| soldQuantity | Int | Yes |
| isActive | Int | Yes |
| isAvailable | Int | Yes |
| slug | Int | Yes |
| imageUrl | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| categoryId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| price | Decimal | No |
| msrp | Decimal | No |
| weight | Decimal | No |
| quantity | Float | No |
| soldQuantity | Float | No |
| categoryId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| price | Decimal | No |
| msrp | Decimal | No |
| weight | Decimal | No |
| quantity | Int | No |
| soldQuantity | Int | No |
| categoryId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | No |
| grade | Grade | No |
| sku | String | No |
| price | Decimal | No |
| msrp | Decimal | No |
| size | String | No |
| weight | Decimal | No |
| weightUnit | String | No |
| quantity | Int | No |
| soldQuantity | Int | No |
| isActive | Boolean | No |
| isAvailable | Boolean | No |
| slug | String | No |
| imageUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| categoryId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productName | String | No |
| productDesc | String | No |
| shortDesc | String | No |
| grade | Grade | No |
| sku | String | No |
| price | Decimal | No |
| msrp | Decimal | No |
| size | String | No |
| weight | Decimal | No |
| weightUnit | String | No |
| quantity | Int | No |
| soldQuantity | Int | No |
| isActive | Boolean | No |
| isAvailable | Boolean | No |
| slug | String | No |
| imageUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| categoryId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| childCategories | Int | Yes |
| product | Int | Yes |
| promotionCategory | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| categoryName | Int | Yes |
| categoryDesc | Int | Yes |
| slug | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| parentCategoryId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| parentCategoryId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| parentCategoryId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| parentCategoryId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryName | String | No |
| categoryDesc | String | No |
| slug | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| parentCategoryId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| quantity | Int | Yes |
| reStockLevel | Int | Yes |
| status | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| productId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| quantity | Float | No |
| reStockLevel | Float | No |
| productId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| quantity | Int | No |
| reStockLevel | Int | No |
| productId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| quantity | Int | No |
| reStockLevel | Int | No |
| status | InventoryStatus | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| productId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| quantity | Int | No |
| reStockLevel | Int | No |
| status | InventoryStatus | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| productId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| imageUrl | Int | Yes |
| productId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| productId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| imageUrl | String | No |
| productId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| imageUrl | String | No |
| productId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| authoredReviews | Int | Yes |
| roles | Int | Yes |
| paymentMethod | Int | Yes |
| orders | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| Int | Yes | |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| preference | Int | Yes |
| balance | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| balance | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| balance | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| balance | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| balance | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| username | Int | Yes |
| password | Int | Yes |
| failedAttempts | Int | Yes |
| lockoutTime | Int | Yes |
| lastLogin | Int | Yes |
| userId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| failedAttempts | Float | No |
| userId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| failedAttempts | Int | No |
| userId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| username | String | No |
| password | String | No |
| failedAttempts | Int | No |
| lockoutTime | DateTime | No |
| lastLogin | DateTime | No |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| username | String | No |
| password | String | No |
| failedAttempts | Int | No |
| lockoutTime | DateTime | No |
| lastLogin | DateTime | No |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| token | Int | Yes |
| expiry | Int | Yes |
| userId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| userId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| token | String | No |
| expiry | DateTime | No |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| token | String | No |
| expiry | DateTime | No |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| userAddress | Int | Yes |
| socialLinks | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| firstName | Int | Yes |
| lastName | Int | Yes |
| phone | Int | Yes |
| birthDate | Int | Yes |
| gender | Int | Yes |
| photo | Int | Yes |
| bio | Int | Yes |
| userId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| userId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| firstName | String | No |
| lastName | String | No |
| phone | String | No |
| birthDate | DateTime | No |
| gender | Gender | No |
| photo | String | No |
| bio | String | No |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| firstName | String | No |
| lastName | String | No |
| phone | String | No |
| birthDate | DateTime | No |
| gender | Gender | No |
| photo | String | No |
| bio | String | No |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userProfileId | Int | Yes |
| addressId | Int | Yes |
| isDefault | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| userProfileId | Float | No |
| addressId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId | Int | No |
| addressId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId | Int | No |
| addressId | Int | No |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId | Int | No |
| addressId | Int | No |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| userAddress | Int | Yes |
| paymentDetail | Int | Yes |
| shippingDetail | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| street | Int | Yes |
| unit | Int | Yes |
| city | Int | Yes |
| zipcode | Int | Yes |
| state | Int | Yes |
| country | Int | Yes |
| planet | Int | Yes |
| solarSystem | Int | Yes |
| galaxy | Int | Yes |
| localGroup | Int | Yes |
| localCluster | Int | Yes |
| universe | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| street | String | No |
| unit | String | No |
| city | String | No |
| zipcode | String | No |
| state | String | No |
| country | String | No |
| planet | String | No |
| solarSystem | String | No |
| galaxy | String | No |
| localGroup | String | No |
| localCluster | String | No |
| universe | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| street | String | No |
| unit | String | No |
| city | String | No |
| zipcode | String | No |
| state | String | No |
| country | String | No |
| planet | String | No |
| solarSystem | String | No |
| galaxy | String | No |
| localGroup | String | No |
| localCluster | String | No |
| universe | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userProfileId | Int | Yes |
| socialProvider | Int | Yes |
| socialUrl | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| userProfileId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId | Int | No |
| socialProvider | String | No |
| socialUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userProfileId | Int | No |
| socialProvider | String | No |
| socialUrl | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| title | Int | Yes |
| message | Int | Yes |
| rating | Int | Yes |
| authorId | Int | Yes |
| productId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| rating | Float | No |
| authorId | Float | No |
| productId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| rating | Int | No |
| authorId | Int | No |
| productId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| title | String | No |
| message | String | No |
| rating | Int | No |
| authorId | Int | No |
| productId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| title | String | No |
| message | String | No |
| rating | Int | No |
| authorId | Int | No |
| productId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| categoryId | Int | Yes |
| promotionId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| categoryId | Float | No |
| promotionId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryId | Int | No |
| promotionId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryId | Int | No |
| promotionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| categoryId | Int | No |
| promotionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| promotionCategory | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| promotionName | Int | Yes |
| promotionDesc | Int | Yes |
| promotionRate | Int | Yes |
| isActive | Int | Yes |
| startDate | Int | Yes |
| endDate | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| promotionRate | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| promotionRate | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| promotionName | String | No |
| promotionDesc | String | No |
| promotionRate | Int | No |
| isActive | Boolean | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| promotionName | String | No |
| promotionDesc | String | No |
| promotionRate | Int | No |
| isActive | Boolean | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| cartId | Int | Yes |
| productId | Int | Yes |
| quantity | Int | Yes |
| promotionId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| cartId | Float | No |
| productId | Float | No |
| quantity | Float | No |
| promotionId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| cartId | Int | No |
| productId | Int | No |
| quantity | Int | No |
| promotionId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| cartId | Int | No |
| productId | Int | No |
| quantity | Int | No |
| promotionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| cartId | Int | No |
| productId | Int | No |
| quantity | Int | No |
| promotionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| cartItems | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| userId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| orderDetail | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| status | Int | Yes |
| tax | Int | Yes |
| total | Int | Yes |
| createdAt | Int | Yes |
| userId | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| userId | Int | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| status | OrderStatusType | No |
| tax | Decimal | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| userId | Int | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| orderId | Int | Yes |
| productId | Int | Yes |
| quantity | Int | Yes |
| total | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| productId | Float | No |
| quantity | Float | No |
| total | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| productId | Int | No |
| quantity | Int | No |
| total | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| orderId | String | No |
| productId | Int | No |
| quantity | Int | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| orderId | String | No |
| productId | Int | No |
| quantity | Int | No |
| total | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| paymentMethod | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| billingAddressId | Int | Yes |
| orderId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| billingAddressId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| billingAddressId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| billingAddressId | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| billingAddressId | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| paymentMethod | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| paymentType | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| paymentType | PaymentType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| paymentType | PaymentType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userId | Int | Yes |
| paymentDetailId | Int | Yes |
| paymentOptionId | Int | Yes |
| cardProvider | Int | Yes |
| nameOnCard | Int | Yes |
| isDefault | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| userId | Float | No |
| paymentDetailId | Float | No |
| paymentOptionId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| paymentDetailId | Int | No |
| paymentOptionId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| paymentDetailId | Int | No |
| paymentOptionId | Int | No |
| cardProvider | String | No |
| nameOnCard | String | No |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| paymentDetailId | Int | No |
| paymentOptionId | Int | No |
| cardProvider | String | No |
| nameOnCard | String | No |
| isDefault | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| estimatedArrival | Int | Yes |
| shippingAddressId | Int | Yes |
| shippingMethodId | Int | Yes |
| orderId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| shippingAddressId | Float | No |
| shippingMethodId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shippingAddressId | Int | No |
| shippingMethodId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| estimatedArrival | DateTime | No |
| shippingAddressId | Int | No |
| shippingMethodId | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| estimatedArrival | DateTime | No |
| shippingAddressId | Int | No |
| shippingMethodId | Int | No |
| orderId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| shippingDetail | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| price | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| price | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| price | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| price | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| price | Decimal | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userId | Int | Yes |
| roleId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| userId | Float | No |
| roleId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| roleId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| roleId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| roleId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| users | Int | Yes |
| permissions | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| roleId | Int | Yes |
| permissionId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| roleId | Float | No |
| permissionId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| roleId | Int | No |
| permissionId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| roleId | Int | No |
| permissionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| roleId | Int | No |
| permissionId | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| roles | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| resource | Int | Yes |
| accessType | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resource | String | No |
| accessType | AccessType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resource | String | No |
| accessType | AccessType | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |